/* body {
	background-image: url('index-gray.jpg');
	background-position: center top;
	background-repeat: no-repeat;
} */

.news-tab {
	--tab-color: #374151;
	border: 1px solid var(--tab-color);
	border-bottom: 0;
	background: #ffffff;
	color: var(--tab-color);
	font-weight: 700;
	line-height: 1;
	padding: 0.9rem 1.5rem;
	width: 11rem;
	text-align: center;
	border-radius: 0.75rem 0.75rem 0 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.news-tab[data-theme="charcoal"] {
	--tab-color: #374151;
}

.news-tab[data-theme="red"] {
	--tab-color: #b91c1c;
}

.news-tab[data-theme="blue"] {
	--tab-color: #1d4ed8;
}

.news-tab[data-theme="green"] {
	--tab-color: #15803d;
}

.news-tab.is-active {
	background: var(--tab-color);
	color: #ffffff;
}

.news-tab:focus-visible {
	outline: 3px solid #93c5fd;
	outline-offset: 2px;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
	opacity: 1;
}

.desktop-dropdown {
	position: relative;
}

.desktop-dropdown-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	min-width: 20rem;
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 0.75rem;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
	padding: 0.6rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease;
	z-index: 30;
}

.desktop-dropdown-menu a {
	display: block;
	padding: 0.6rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.4;
}

.desktop-dropdown-menu a:hover,
.desktop-dropdown-menu a:focus-visible {
	background: #eff6ff;
	color: #1d4ed8;
	outline: none;
}

.desktop-dropdown:hover .desktop-dropdown-menu,
.desktop-dropdown:focus-within .desktop-dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #ffffff;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}