/* Royal College Notices & Announcements - Modern minimal frontend */

.rc-notices-wrapper {
	max-width: 100%;
	margin: 2rem 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
}

/* ---- Tabs: minimal pill bar ---- */
.rc-notices-tabs-header {
	padding: 0;
	margin-bottom: 1.5rem;
}

.rc-notices-tabs-nav {
	display: flex;
	background: #111;
	border-radius: 12px;
	padding: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	gap: 4px;
}

.rc-notices-tabs-nav .rc-notices-tab-btn,
.rc-notices-tabs-nav button.rc-notices-tab-btn {
	flex: 1;
	background-color: transparent !important;
	border: none;
	color: rgba(255, 255, 255, 0.65);
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.2s ease;
	text-align: center;
	border-radius: 8px;
	text-transform: uppercase;
}

.rc-notices-tab-btn:hover:not(.is-active) {
	color: rgba(255, 255, 255, 0.95);
}

.rc-notices-tabs-nav .rc-notices-tab-btn.is-active {
	color: #00b347;
	background-color: transparent !important;
	background-image: linear-gradient(135deg, #00a040 0%, #00c853 50%, #69f0ae 100%);
	background-clip: text !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	text-transform: uppercase;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.rc-notices-tabs-nav .rc-notices-tab-btn.is-active {
		color: transparent;
	}
}

@media (max-width: 768px) {
	.rc-notices-tabs-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* Firefox */
		gap: 8px;
		padding: 6px;
	}

	.rc-notices-tabs-nav::-webkit-scrollbar {
		display: none;
		/* Safari and Chrome */
	}

	.rc-notices-tabs-nav .rc-notices-tab-btn {
		flex: 0 0 auto;
		padding: 0.85rem 1.25rem;
		white-space: nowrap;
		font-size: 0.875rem;
	}
}

/* ---- Content: tab-wise, boxed bullet content ---- */
.rc-notices-tabs-content {
	min-height: 240px;
}

.rc-notices-panel {
	display: block;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.rc-notices-panel.rc-notices-panel--degree-wrap {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.rc-notices-panel.hidden {
	display: none !important;
}

.rc-notices-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.rc-notices-two-col {
		grid-template-columns: 1fr;
	}

	.rc-notices-tabs-content {
		padding: 0rem;
	}
}

.rc-notices-subcol-title {
	margin: 0 0 1rem;
	font-size: 23px !important;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: -0.01em;
	padding: 17px 11px 3px 18px;
}

/* Boxed bullet list: minimal ---- */
.rc-notices-tabs-content .rc-notices-bullet-list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

/* "New" badge: premium gradient, education theme (notices under 7 days old) */
.rc-notice-new-badge {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2em 0.5em;
	margin-left: 0.4em;
	border-radius: 4px;
	background: linear-gradient(135deg, #003d22 0%, #005f33 35%, #0a7c42 65%, #1a9b52 100%);
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow:
		0 1px 2px rgba(0, 95, 51, 0.4),
		0 2px 6px rgba(0, 79, 51, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	white-space: nowrap;
	line-height: 1.2;
}

.rc-notice-bullet-item .rc-notice-new-badge {
	margin-left: 0.35em;
}

.rc-notice-item--new .rc-notice-title .rc-notice-new-badge {
	margin-left: 0.5em;
}

.rc-notices-tabs-content .rc-notices-bullet-list li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.85rem 1rem 0.85rem 2.25rem;
	margin-bottom: 0.4rem;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	border-radius: 0px;
	color: #374151;
	transition: background-color 0.2s ease;
}

.rc-notices-tabs-content .rc-notices-bullet-list li:nth-child(odd) {
	background-color: #e8fff1;
}

.rc-notices-tabs-content .rc-notices-bullet-list li:nth-child(even) {
	background-color: #ffffff;
}

.rc-notices-tabs-content .rc-notices-bullet-list li:hover {
	background-color: #f3f4f6;
}

.rc-notices-tabs-content .rc-notices-bullet-list li:last-child {
	margin-bottom: 0;
}

.rc-notices-tabs-content .rc-notices-bullet-list .rc-notice-bullet-item-inner {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.35em;
	min-width: 0;
}

.rc-notices-tabs-content .rc-notices-bullet-list li::before {
	content: "\203A";
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4em;
	font-weight: 700;
	color: #005f33;
	line-height: 1;
}

.rc-notices-tabs-content .rc-notices-bullet-list .rc-notice-title-link,
.rc-notices-tabs-content .rc-notices-bullet-list .rc-notice-title-text {
	color: #374151;
	text-decoration: none;
}

.rc-notices-tabs-content .rc-notices-bullet-list .rc-notice-title-link:hover {
	color: #005f33;
	text-decoration: none;
}

.rc-notices-tabs-content .rc-notices-simple-list {
	max-width: 1300px;
}

/* Archive: same bullet list style as [rc_notices] tabs */
.rc-notices-archive .rc-notices-bullet-list {
	list-style: none;
	margin: 0 0 0.25rem;
	padding: 0;
}

.rc-notices-archive .rc-notices-bullet-list li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.85rem 1rem 0.85rem 2.25rem;
	margin-bottom: 0.4rem;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	color: #374151;
	border-radius: 0px;
	transition: background-color 0.2s ease;
}

.rc-notices-archive .rc-notices-bullet-list li:nth-child(odd) {
	background-color: #e8fff1;
}

.rc-notices-archive .rc-notices-bullet-list li:nth-child(even) {
	background-color: #ffffff;
}

.rc-notices-archive .rc-notices-bullet-list li:hover {
	background-color: #f3f4f6;
}

.rc-notices-archive .rc-notices-bullet-list li:last-child {
	margin-bottom: 0;
}

.rc-notices-archive .rc-notices-bullet-list .rc-notice-bullet-item-inner {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.35em;
	min-width: 0;
}

.rc-notices-archive .rc-notices-bullet-list li::before {
	content: "\203A";
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4em;
	font-weight: 700;
	color: #005f33;
	line-height: 1;
}

.rc-notices-archive .rc-notices-bullet-list .rc-notice-title-link,
.rc-notices-archive .rc-notices-bullet-list .rc-notice-title-text {
	color: #374151;
	text-decoration: none;
}

.rc-notices-archive .rc-notices-bullet-list .rc-notice-title-link:hover {
	color: #005f33;
	text-decoration: none;
}

.rc-notices-archive .rc-notices-simple-list {
	max-width: 1300px;
}

.rc-notices-tabs-content .rc-notices-empty {
	margin: 0;
	padding: 1rem 0;
	color: #6b7280;
	font-size: 1.0625rem;
	line-height: 1.5;
}

.rc-notices-see-more-wrap {
	text-align: left;
	padding: 0px 15px 18px 16px;
}

.rc-notices-see-more {
	display: inline-block;
	background: linear-gradient(135deg, #004b2a 0%, #005f33 50%, #0a7c42 100%);
	color: #fff !important;
	padding: 0.25rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 500;
	text-decoration: none !important;
	border: none;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 95, 51, 0.3);
	transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.rc-notices-see-more:hover {
	color: #fff !important;
	text-decoration: none !important;
	opacity: 0.95;
	box-shadow: 0 3px 10px rgba(0, 95, 51, 0.4);
}

/* ---- Legacy / cards ---- */
.rc-notices-category {
	margin-bottom: 2.5em;
}

.rc-notices-category:last-child {
	margin-bottom: 0;
}

.rc-notices-category-title {
	font-size: 1.35em;
	margin: 0 0 1em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #1a1a1a;
	color: #1a1a1a;
}

.rc-notices-list {
	display: grid;
	gap: 1.25em;
}

.rc-notices-list--single {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.rc-notice-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease;
}

.rc-notice-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rc-notice-content {
	padding: 1.25em;
	flex: 1;
}

.rc-notice-title {
	margin: 0 0 0.5em;
	font-size: 1.25em;
	line-height: 1.3;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35em;
}

.rc-notice-title a {
	color: inherit;
	text-decoration: none;
}

.rc-notice-title a:hover {
	text-decoration: underline;
}

.rc-notice-excerpt {
	font-size: 1.05em;
	line-height: 1.5;
	color: #444;
	margin-bottom: 0.75em;
}

.rc-notice-excerpt p:last-child {
	margin-bottom: 0;
}

/* Title as link or button (image opens lightbox; PDF/URL open in new tab) */
.rc-notice-title-link {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.rc-notice-title-link:hover {
	text-decoration: underline;
}

/* Lightbox: image on title click */
.rc-notice-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s;
}

.rc-notice-lightbox--open {
	visibility: visible;
	opacity: 1;
}

.rc-notice-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	cursor: pointer;
}

.rc-notice-lightbox-inner {
	position: relative;
	max-width: 95vw;
	max-height: 95vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rc-notice-lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	cursor: pointer;
	z-index: 100001;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease, transform 0.15s ease;
}

.rc-notice-lightbox-close:hover {
	background: #fff;
	transform: scale(1.05);
}

.rc-notice-lightbox-close:focus {
	outline: 2px solid rgba(0, 95, 51, 0.6);
	outline-offset: 2px;
}

.rc-notice-lightbox-close-icon {
	display: block;
	flex-shrink: 0;
	pointer-events: none;
}

.rc-notice-lightbox-content {
	background: #fff;
	padding: 0.5rem;
	border-radius: 4px;
	max-width: 90vw;
	max-height: 90vh;
	overflow: auto;
}

.rc-notice-lightbox-content img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.rc-notice-lightbox-active {
	overflow: hidden;
}

/* ---- Archive page (shortcode rc_notices_archive) ---- */
.rc-notices-archive-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

/* Single box for archive list only (pagination stays outside) */
.rc-notices-archive .rc-notices-archive-results-box {
	display: block;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.rc-notices-archive .rc-notices-pagination {
	margin-top: 1.5rem;
	text-align: center;
}

.rc-notices-archive .rc-notices-pagination .rc-notices-pagination-list {
	justify-content: center;
}

.rc-notices-archive-date-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rc-notices-archive-date-label {
	font-size: 17px;
	font-weight: 500;
	color: #374151;
	margin: 0;
	width: 118px;
}

.rc-notices-archive-date-inner {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
}

.rc-notices-archive-date-input {
	width: 100%;
	height: 48px;
	min-height: 48px;
	padding: 0 2.5rem 0 1rem;
	font-size: 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #111;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

/* Hide native calendar icon but keep it clickable */
.rc-notices-archive-date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	position: absolute;
	right: 0;
	width: 40px;
	height: 100%;
	cursor: pointer;
}

.rc-notices-date-icon {
	position: absolute;
	right: 12px;
	color: #9ca3af;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rc-notices-archive-date-input:focus {
	outline: none;
	border-color: #005f33;
	box-shadow: 0 0 0 2px rgba(0, 95, 51, 0.15);
}

.rc-notices-archive-search-wrap {
	flex: 1;
	min-width: 220px;
	max-width: 380px;
	margin-left: auto;
}

.rc-notices-archive-search-wrap .rc-notices-archive-search-inner {
	width: 100%;
}

.rc-notices-archive .rc-notices-archive-filters .rc-notices-archive-search-inner {
	width: 100%;
}

.rc-notices-archive-search {
	margin-bottom: 30px;
	max-width: 100%;
}

@media (max-width: 640px) {
	.rc-notices-archive-filters {
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
	}

	.rc-notices-archive-date-wrap {
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}

	.rc-notices-archive-date-inner {
		flex: 1;
	}

	.rc-notices-archive-date-label {
		width: auto;
		white-space: nowrap;
		font-size: 15px;
		color: #374151;
		font-weight: 500;
		flex-shrink: 0;
	}

	.rc-notices-archive-date-input {
		width: 100%;
		font-size: 14px;
		height: 44px;
		min-height: 44px;
		padding-right: 2.25rem;
	}

	.rc-notices-archive-search-wrap {
		max-width: none;
		margin-left: 0;
	}

	.rc-notices-archive-search-inner {
		height: 44px;
		min-height: 44px;
	}

	.rc-notices-archive-search input[type="search"] {
		font-size: 14px;
	}

	.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn, 
	.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn {
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
	}
}

.rc-notices-archive-search-inner {
	display: flex;
	align-items: center;
	min-height: 48px;
	height: 48px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	box-sizing: border-box;
}

.rc-notices-archive-search input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 100%;
	font-size: 1rem;
	border: none;
	background: transparent;
	color: #1a1a1a;
	outline: none;
	box-sizing: border-box;
}

.rc-notices-archive-search input[type="search"]::placeholder {
	color: #9ca3af;
}

.rc-notices-archive-search input[type="search"]:focus {
	outline: none;
}

.rc-notices-archive-search-inner:focus-within {
	box-shadow: 0 0 0 1px #e5e7eb, 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Custom icon-only search button: avoid Elementor global button styles */
.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn,
.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #9ca3af !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
	transition: color 0.2s ease !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	font-size: inherit !important;
	line-height: 1 !important;
}

.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn:hover,
.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn:hover {
	color: #6b7280 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}

.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn svg,
.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none !important;
}

.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn svg path,
.rc-notices-archive .rc-notices-archive-search .rc-notices-archive-search-btn svg circle,
.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn svg path,
.rc-notices-archive .rc-notices-archive-search button.rc-notices-search-icon-btn svg circle {
	fill: none !important;
}

.rc-notices-archive-results--loading {
	opacity: 0.6;
	pointer-events: none;
	min-height: 120px;
}

.rc-notices-list--archive {
	display: grid;
	gap: 1.25em;
	margin-bottom: 2rem;
}

.rc-notices-pagination {
	margin: 1.5rem 0;
}

.rc-notices-pagination-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.rc-notices-pagination-list a,
.rc-notices-pagination-list span {
	display: inline-block;
	padding: 3px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	text-decoration: none;
	color: #374151;
	font-size: 12px;
}

.rc-notices-pagination-list a:hover {
	background: #f5f5f5;
	color: #005f33;
	border-color: #005f33;
}

.rc-notices-pagination-list .current {
	background: #005f33;
	color: #fff;
	border-color: #005f33;
}

/* --- Call Us Header Button & Dropdown (Isolated Styles) --- */
#rc-call-us-header-wrap.rc-header-contact-wrapper {
	position: relative;
	display: inline-block;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#rc-call-us-header-wrap .rc-header-call-us-btn {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	background: #fff !important;
	border: 1px solid #005F32 !important;
	padding: 9px 14px 9px 14px !important;
	color: #005F32 !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer !important;
	transition: all 0.2s ease-in-out !important;
	height: auto !important;
	min-height: unset !important;
	line-height: 1.2 !important;
}

#rc-call-us-header-wrap .rc-header-call-us-btn:hover {
	background: #fff !important;
	color: #005F32 !important;
}

#rc-call-us-header-wrap .rc-btn-text {
	letter-spacing: normal !important;
	text-transform: none !important;
}

#rc-call-us-header-wrap .rc-btn-icon-right i {
	font-size: 11px !important;
	transition: transform 0.3s ease;
	display: inline-block;
}

#rc-call-us-header-wrap:hover .rc-btn-icon-right i {
	transform: rotate(180deg);
}

/* Dropdown Container */
#rc-call-us-header-wrap .rc-header-contact-dropdown {
	position: absolute;
	top: 100%;
	right: -158px !important;
	width: 680px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	margin-top: 10px;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

#rc-call-us-header-wrap:hover .rc-header-contact-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Invisible bridge */
#rc-call-us-header-wrap .rc-header-contact-dropdown::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

#rc-call-us-header-wrap .rc-contact-dropdown-arrow {
	position: absolute;
	top: -10px;
	right: 210px !important;
	width: 20px;
	height: 20px;
	background: #fff;
	transform: rotate(45deg);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-left: 1px solid rgba(0, 0, 0, 0.06);
	z-index: 1;
}

/* Contact Rows */
#rc-call-us-header-wrap .rc-contact-row {
	display: flex;
	padding: 21px 30px;
	border-bottom: 1px solid #f2f4f7;
	gap: 40px;
	align-items: flex-start;
	background: #fff;
	transition: background 0.2s ease;
}

#rc-call-us-header-wrap .rc-contact-row:hover {
	background: #fbfdfe;
}

#rc-call-us-header-wrap .rc-contact-row:last-of-type {
	border-bottom: none;
}

#rc-call-us-header-wrap .rc-contact-title-col {
	flex: 1.2;
}

#rc-call-us-header-wrap .rc-contact-details-col {
	flex: 1.8;
}

#rc-call-us-header-wrap .rc-contact-heading {
	margin: 0;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #111 !important;
	line-height: 1.3 !important;
}

/* Detail Items with Icons */
#rc-call-us-header-wrap .rc-detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

#rc-call-us-header-wrap .rc-detail-item:last-child {
	margin-bottom: 0;
}

#rc-call-us-header-wrap .rc-detail-item i {
	color: #006033 !important;
	flex-shrink: 0 !important;
	font-size: 16px !important;
	width: 16px;
	text-align: center;
}

#rc-call-us-header-wrap .rc-detail-item span {
	font-size: 14px !important;
	color: #444 !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	#rc-call-us-header-wrap .rc-header-contact-dropdown {
		width: calc(100vw - 40px);
		right: -20px;
	}

	#rc-call-us-header-wrap .rc-contact-row {
		flex-direction: column;
		gap: 25px;
		padding: 25px;
	}

	#rc-call-us-header-wrap .rc-contact-dropdown-arrow {
		display: none;
	}
}