* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	color-scheme: dark;
	--black: #242424;
	--dark: #242424;
	--mid: #242424;
	--light: #f5f5f5;
	--accent: #d1b36b;
	--muted: rgba(255, 255, 255, 0.75);
	--footer-border: rgba(255, 255, 255, 0.12);
	--footer-dark-900: #0c1b3c;
	--footer-dark-800: #0c1b3c;
	--footer-dark-700: #0c1b3c;
}

body {
	font-family: "Montserrat", sans-serif;
	background: var(--black);
	color: var(--light);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.lspd-theme {
	--black: #242424;
	--dark: #242424;
	--mid: #242424;
	--footer-dark-900: #2e3d59;
	--footer-dark-800: #2e3d59;
	--footer-dark-700: #2e3d59;
}

.lspd-theme .site-header {
	background: #2e3d59;
}

.sheriff-theme {
	--black: #152a0b;
	--dark: #152a0b;
	--mid: #152a0b;
	--light: #421e04;
	--accent: #b88f66;
	--muted: rgba(66, 30, 4, 0.75);
	--footer-dark-900: #b88f66;
	--footer-dark-800: #b88f66;
	--footer-dark-700: #b88f66;
}

.sheriff-theme .site-header {
	background: #b88f66;
}

.sheriff-theme .content-card,
.sheriff-theme .history-text {
	background: #b88f66;
	border-color: rgba(66, 30, 4, 0.35);
}

.sheriff-theme .page-shell {
	color: #f5f5f5;
}

.sheriff-theme .page-hero h1,
.sheriff-theme .page-kicker,
.sheriff-theme .page-hero p,
.sheriff-theme .page-content > * {
	color: #f5f5f5;
}

.sheriff-theme .content-card,
.sheriff-theme .content-card h2,
.sheriff-theme .content-card p,
.sheriff-theme .history-text,
.sheriff-theme .history-text h2,
.sheriff-theme .history-text p,
.sheriff-theme .info-list {
	color: #421e04;
}

.sheriff-theme .nav-dropdown {
	background: #b88f66;
}

.page-shell {
	flex: 1;
	background: radial-gradient(
		circle at top left,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(0, 0, 0, 0) 55%
	);
}

.page-hero {
	padding: 80px 0 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.page-kicker {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	color: var(--accent);
	margin-bottom: 12px;
}

.page-hero h1 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 600;
	margin-bottom: 12px;
}

.page-hero-title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.page-hero-title h1 {
	margin: 0;
}

.division-logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.page-hero p {
	color: var(--muted);
	max-width: 520px;
	line-height: 1.6;
}

.page-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 24px 48px;
	display: grid;
	gap: 28px;
}

.content-card {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.form-card {
	display: flex;
	justify-content: center;
}

.form-embed {
	width: min(100%, 760px);
	height: 900px;
	border: 0;
}

.wanted-board {
	background: linear-gradient(135deg, rgba(18, 18, 20, 0.92), rgba(38, 38, 38, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.wanted-title {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(22, 49, 96, 0.9);
	border: 1px solid rgba(136, 167, 214, 0.5);
	color: var(--light);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.wanted-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.wanted-card {
	background: #1a1a1a;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.wanted-photo {
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.06);
	padding: 16px;
}

.wanted-info {
	background: #2b2b2b;
	padding: 14px 16px 16px;
}

.wanted-info h3 {
	margin: 0 0 8px;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.wanted-id {
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 8px;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.photo-slot {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: block;
}

.content-card h2 {
	font-size: 20px;
	margin-bottom: 12px;
}

details.content-card > summary {
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	list-style: none;
}

details.content-card > summary::-webkit-details-marker {
	display: none;
}

.promo-content {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transform: translateY(-6px);
	transition: grid-template-rows 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
	margin-top: 0;
}

details[open] .promo-content {
	grid-template-rows: 1fr;
	opacity: 1;
	transform: translateY(0);
	margin-top: 16px;
}

.promo-inner {
	overflow: hidden;
}

.promo-sub {
	margin-top: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.02);
}

.promo-sub > summary {
	cursor: pointer;
	font-weight: 600;
}

.promo-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 12px;
}

.promo-table td {
	padding: 6px 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
}

.content-card p {
	color: var(--muted);
	line-height: 1.7;
}

.info-list {
	margin: 12px 0 16px 18px;
	color: var(--muted);
	line-height: 1.7;
}

.info-list li {
	margin-bottom: 6px;
}

.requirements-block {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.requirements-text h2 {
	font-size: 20px;
	margin-bottom: 12px;
}

.requirements-text p {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 12px;
}

.requirements-list {
	margin-left: 18px;
	color: var(--muted);
	line-height: 1.7;
}

.requirements-list li {
	margin-bottom: 8px;
}

.requirements-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.requirements-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.agent-sections {
	display: grid;
	gap: 28px;
}

.agent-section {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.agent-section-header {
	margin-bottom: 18px;
}

.agent-section-header h2 {
	font-size: 20px;
	margin-bottom: 8px;
}

.agent-section-header p {
	color: var(--muted);
	line-height: 1.6;
}

.agent-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.agent-card {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	display: grid;
	gap: 14px;
	text-align: center;
}

.agent-card span {
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.agent-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 12px;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.agent-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.agent-photo img.agent-photo-logo {
	width: 65%;
	height: 65%;
	object-fit: contain;
}

.agent-photo.no-placeholder {
	background: none;
	background-image: none !important;
}

.lspd-section .agent-photo,
.bcso-section .agent-photo {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60%;
	color: transparent;
	font-size: 0;
}

.lspd-section .agent-photo {
	background-image: url("imagenes/LSPD_logo_v3.png");
}

.bcso-section .agent-photo {
	background-image: url("imagenes/sheriff.png");
}

.dept-links {
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 18px;
	margin-top: 16px;
	justify-items: center;
}

.dept-links > .dept-card {
	grid-column: span 2;
}

.dept-links > :nth-child(6) {
	grid-column: 2 / span 2;
}

.dept-links > :nth-child(7) {
	grid-column: 4 / span 2;
}

.dept-links > :nth-child(8) {
	grid-column: 6 / span 2;
}

.dept-links > :nth-child(9) {
	grid-column: 8 / span 2;
}

.dept-card {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	text-decoration: none;
	color: var(--light);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
	display: grid;
	place-items: center;
	gap: 12px;
	transition: transform 0.2s ease, border-color 0.2s ease;
	width: 100%;
	max-width: 260px;
}

.dept-card img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}

.dept-card span {
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-align: center;
}

.dept-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
}

.dept-links-departamentos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
	gap: 18px;
	margin-top: 16px;
	justify-content: center;
}

.dept-card-departamentos {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	text-decoration: none;
	color: var(--light);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
	display: grid;
	place-items: center;
	gap: 12px;
	transition: transform 0.2s ease, border-color 0.2s ease;
	width: 100%;
}

.dept-card-departamentos img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}

.dept-card-departamentos span {
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-align: center;
}

.dept-card-departamentos:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
}

.history-block {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 40px;
	align-items: stretch;
}

.history-block.is-reverse {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.history-block.is-reverse .history-text {
	order: 2;
}

.history-text {
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 28px 32px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
	align-self: start;
}

.history-text h2 {
	font-size: 20px;
	margin-bottom: 12px;
}

.history-text p {
	color: var(--muted);
	line-height: 1.7;
}

.history-media {
	align-self: center;
	width: 100%;
	min-height: 220px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, #1f2330 0%, #242424 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	overflow: hidden;
	justify-self: stretch;
	padding: 16px;
}

.history-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sheriff-theme .history-media {
	background: linear-gradient(135deg, #421e04 0%, #152a0b 100%);
}

.media-placeholder {
	color: var(--muted);
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	width: 100%;
	min-height: 220px;
	display: grid;
	place-items: center;
}

.history-media--logo {
	max-width: 240px;
	aspect-ratio: 1 / 1;
	justify-self: start;
	min-height: 0;
}

.history-media--logo img {
	object-fit: cover;
}


.section-divider {
	border: none;
	height: 2px;
	width: 100%;
	background: #1f6a8b;
	opacity: 0.9;
}

@media (max-width: 900px) {
	.history-block,
	.history-block.is-reverse {
		grid-template-columns: 1fr;
	}

	.history-block.is-reverse .history-text {
		order: 0;
	}

	.history-media {
		min-height: 200px;
	}

	.header-inner {
		padding: 16px 20px;
		justify-content: center;
	}

	.main-nav {
		width: 100%;
		justify-content: center;
		gap: 14px;
	}

	.nav-dropdown {
		position: static;
		box-shadow: none;
		margin-top: 6px;
	}

	.page-hero {
		padding: 64px 0 32px;
	}

	.page-content {
		padding: 24px 20px 40px;
		gap: 22px;
	}

	.content-card {
		padding: 24px;
	}

	.agent-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}

	.dept-links {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.dept-links > .dept-card,
	.dept-links > :nth-child(6),
	.dept-links > :nth-child(7),
	.dept-links > :nth-child(8),
	.dept-links > :nth-child(9) {
		grid-column: auto;
	}
}

@media (max-width: 600px) {
	.brand-logo {
		width: 44px;
		height: 44px;
	}

	.brand-title {
		font-size: 14px;
	}

	.defcon-status {
		order: 0;
		margin-left: 0;
	}

	.nav-link,
	.nav-button {
		font-size: 13px;
	}

	.page-hero h1 {
		font-size: clamp(24px, 6vw, 32px);
	}

	.agent-card {
		padding: 16px;
	}

	.agent-photo {
		aspect-ratio: 1 / 1.2;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #0c1b3c;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px 18px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	text-decoration: none;
	color: var(--light);
}

.brand:hover .brand-title {
	color: #b5b5b5;
}

.brand-logo {
	width: 56px;
	height: 56px;
	border-radius: 0;
	background: transparent;
	object-fit: cover;
}

.brand-title {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.6px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-left: auto;
}

.defcon-status {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(0, 0, 0, 0.25);
	flex-shrink: 0;
	order: -1;
	margin-left: -12px;
}

.defcon-status img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
}

.defcon-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.defcon-label {
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--muted);
}

.defcon-level {
	font-size: 22px;
	font-weight: 600;
	color: var(--light);
}

.nav-link,
.nav-button {
	color: var(--light);
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.6px;
	cursor: pointer;
	padding: 8px 0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-button {
	position: relative;
	padding-right: 14px;
}

.nav-button::after {
	content: "\25BE";
	position: absolute;
	right: 0;
	bottom: 8px;
	font-size: 10px;
	color: var(--muted);
}

.nav-link:hover,
.nav-button:hover {
	color: #b5b5b5;
}

.nav-group {
	position: relative;
}

.nav-dropdown {
	position: absolute;
	top: 32px;
	left: 0;
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 12px;
	border-radius: 10px;
	min-width: 180px;
	display: none;
	flex-direction: column;
	gap: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.nav-dropdown a {
	color: var(--muted);
	text-decoration: none;
	font-size: 13px;
}

.nav-group:hover .nav-dropdown {
	display: flex;
}

.icon-button {
	background: none;
	border: none;
	color: var(--light);
	border-radius: 999px;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.hero {
	position: relative;
	min-height: 60vh;
	max-height: 720px;
	display: grid;
	align-items: center;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.2) 55%,
		rgba(0, 0, 0, 0.65) 100%
	);
}

.hero-content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 24px 130px;
}

.hero-kicker {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--accent);
	margin-bottom: 12px;
}

.hero-content h1 {
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 600;
	margin-bottom: 16px;
}

.hero-content p {
	max-width: 540px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 24px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.primary-button,
.secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
	background: var(--accent);
	color: #151515;
	box-shadow: 0 8px 20px rgba(209, 179, 107, 0.35);
}

.secondary-button {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--light);
}

.primary-button:hover,
.secondary-button:hover {
	transform: translateY(-2px);
}

.form-button {
	margin-top: 16px;
}

.quick-links {
	max-width: 1200px;
	margin: 24px auto 80px;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.quick-links article {
	background: #0c1b3c;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.quick-links h3 {
	font-size: 16px;
	margin-bottom: 8px;
}

.quick-links p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.site-footer {
	margin-top: auto;
	background: linear-gradient(
		135deg,
		var(--footer-dark-900) 0%,
		var(--footer-dark-800) 45%,
		var(--footer-dark-700) 100%
	);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 48px 0 32px;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
	align-items: start;
}

.footer-column p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.footer-title {
	font-size: 15px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.footer-logo {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.footer-link {
	color: var(--muted);
	text-decoration: none;
	font-size: 14px;
	margin-bottom: 8px;
	display: inline-flex;
	gap: 8px;
}

.footer-link:hover {
	color: var(--accent);
}

.footer-spacer {
	height: 12px;
}

.footer-divider {
	margin: 28px 0 16px;
	height: 1px;
	background: var(--footer-border);
}

.footer-bottom {
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.announcements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.announcement-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: var(--dark);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	text-align: left;
	color: var(--light);
	padding: 0;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.announcement-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.25);
}

.announcement-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111826;
}

.announcement-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.announcement-body {
	padding: 22px;
	display: grid;
	gap: 12px;
}

.announcement-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.announcement-tag {
	background: rgba(209, 179, 107, 0.16);
	color: var(--accent);
	font-size: 11px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(209, 179, 107, 0.35);
}

.announcement-date {
	font-size: 12px;
	color: var(--muted);
}

.announcement-title {
	font-size: 20px;
	font-weight: 600;
}

.announcement-excerpt {
	color: var(--muted);
	line-height: 1.6;
}

.modal {
	position: fixed;
	inset: 0;
	display: none;
	place-items: center;
	z-index: 50;
	padding: 24px;
}

.modal.is-open {
	display: grid;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 24, 0.78);
	backdrop-filter: blur(4px);
}

.modal-card {
	position: relative;
	background: var(--dark);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
	max-width: 920px;
	width: min(100%, 920px);
	max-height: 90vh;
	overflow: auto;
	display: grid;
}

.modal-close {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	color: var(--light);
	font-size: 20px;
	cursor: pointer;
}

.modal-media {
	width: 100%;
	background: #0f1626;
}

.modal-media img,
.modal-media iframe {
	width: 100%;
	border: 0;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.modal-body {
	padding: 24px 28px 30px;
	display: grid;
	gap: 12px;
}

.modal-body h2 {
	font-size: 24px;
}

.modal-body p {
	color: var(--muted);
	line-height: 1.7;
}

.modal-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.header-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.main-nav {
		width: 100%;
		justify-content: flex-start;
	}

	.hero-content {
		padding: 100px 24px 120px;
	}
}

@media (max-width: 600px) {
	.brand-title {
		font-size: 14px;
	}

	.main-nav {
		gap: 12px;
	}

	.nav-dropdown {
		position: static;
		box-shadow: none;
	}

	.site-footer {
		padding: 40px 0 28px;
	}
}
