/**
 * Hannibal theme styles
 */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
	--color-navy: #122630;
	--color-navy-dark: #0d1c24;
	--color-navy-mid: #1d3541;
	--color-navy-widget: #263e47;
	--color-footer: #1a363e;
	--color-accent: #e84e36;
	--color-accent-hover: #d0432e;
	--color-cream: #f9f8f3;
	--color-white: #ffffff;
	--color-gray-100: #f5f5f5;
	--color-gray-200: #e8e8e8;
	--color-gray-300: #d0d0d0;
	--color-gray-400: #9a9a9a;
	--color-gray-500: #6b6b6b;
	--color-gray-600: #4a4a4a;
	--color-text: #1a1a1a;
	--color-text-muted: #767676;

	--verdict-false: #e84e36;
	--verdict-misleading: #e67e22;
	--verdict-unverified: #5a5a5a;
	--verdict-investigating: rgba(255, 255, 255, 0.15);
	--verdict-true: #2e7d4f;

	--card-blue: #dce8f0;
	--card-pink: #f5e0e4;
	--card-green: #dceee0;
	--card-purple: #e4dff0;

	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--container-width: 1200px;
	--container-narrow: 760px;
	--header-height: 64px;
	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-pill: 999px;
	--shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06);
	--transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-cream);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.25;
}

p {
	margin: 0 0 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: var(--container-narrow);
}

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
	background: var(--color-white);
	border-top: 3px solid var(--color-navy);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 0 var(--color-gray-200);
}

.site-header .site-header__inner {
	position: relative;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: 24px;
}

.site-branding__text {
	display: inline-flex;
	align-items: baseline;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-navy);
}

.site-branding__dot {
	color: var(--color-accent);
}

.site-branding--logo img {
	max-height: 48px;
	width: auto;
}

.primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-left: auto;
}

.site-header__inner .primary-nav__toggle {
	display: none;
	flex-shrink: 0;
}

.primary-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 28px;
}

.primary-nav__list a {
	display: block;
	padding: 20px 0 18px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-gray-600);
	border-bottom: 3px solid transparent;
	transition: color var(--transition), border-color var(--transition);
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current_page_item > a {
	color: var(--color-navy);
	border-bottom-color: var(--color-accent);
}

.primary-nav__toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.primary-nav__toggle-icon,
.primary-nav__toggle-icon::before,
.primary-nav__toggle-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-navy);
	position: relative;
	transition: var(--transition);
}

.primary-nav__toggle-icon::before,
.primary-nav__toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.primary-nav__toggle-icon::before { top: -7px; }
.primary-nav__toggle-icon::after { top: 7px; }

.country-dropdown {
	position: relative;
}

.language-dropdown {
	position: relative;
}

.language-dropdown__toggle,
.country-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid var(--color-gray-300);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: border-color var(--transition), box-shadow var(--transition);
	max-width: 180px;
}

.language-dropdown__toggle:hover,
.language-dropdown.is-open .language-dropdown__toggle,
.country-dropdown__toggle:hover,
.country-dropdown.is-open .country-dropdown__toggle {
	border-color: var(--color-navy);
	box-shadow: 0 0 0 1px var(--color-navy);
}

.language-dropdown__flag,
.country-dropdown__flag {
	font-size: 1.1rem;
	line-height: 1;
	flex-shrink: 0;
}

.language-dropdown__label,
.country-dropdown__label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.language-dropdown__chevron,
.country-dropdown__chevron {
	width: 8px;
	height: 8px;
	border-right: 1.5px solid var(--color-gray-500);
	border-bottom: 1.5px solid var(--color-gray-500);
	transform: rotate(45deg) translateY(-2px);
	flex-shrink: 0;
	transition: transform var(--transition);
}

.language-dropdown.is-open .language-dropdown__chevron,
.country-dropdown.is-open .country-dropdown__chevron {
	transform: rotate(225deg) translateY(2px);
}

.language-dropdown__menu,
.country-dropdown__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 220px;
	max-height: 320px;
	overflow-y: auto;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	padding: 6px;
	z-index: 120;
}

.language-dropdown__menu[hidden],
.country-dropdown__menu[hidden] {
	display: none;
}

.language-dropdown__option,
.country-dropdown__option {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 10px 12px;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--color-gray-600);
	background: transparent;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.language-dropdown__option:hover,
.language-dropdown__option.is-active,
.country-dropdown__option:hover,
.country-dropdown__option.is-active {
	background: var(--color-gray-100);
	color: var(--color-navy);
}

.language-dropdown__option-flag,
.country-dropdown__option-flag {
	font-size: 1.15rem;
	line-height: 1;
	flex-shrink: 0;
}

.language-dropdown__option-name,
.country-dropdown__option-name {
	flex: 1;
}

/* Confirmation modal */
.hannibal-modal[hidden] {
	display: none;
}

.hannibal-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.hannibal-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 38, 48, 0.55);
}

.hannibal-modal__dialog {
	position: relative;
	width: min(100%, 440px);
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
	padding: 32px 28px 28px;
}

.hannibal-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-gray-500);
	cursor: pointer;
}

.hannibal-modal__title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--color-navy);
	margin-bottom: 12px;
	padding-right: 24px;
}

.hannibal-modal__message {
	color: var(--color-gray-600);
	margin-bottom: 24px;
	line-height: 1.6;
}

.hannibal-modal__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--color-white);
	background: var(--color-navy);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
}

.hannibal-modal__btn:hover {
	background: var(--color-navy-dark);
}

body.modal-open,
body.nav-open {
	overflow: hidden;
}

/* Elementor compatibility */
.hannibal-elementor-content,
.single-page--elementor .entry-content {
	max-width: none;
	padding: 0;
}

.hannibal-elementor-page .site-main {
	padding-top: 0;
}

.hannibal-elementor-ready .elementor-widget-wrap.elementor-element-populated {
	padding: 0;
}

/* Post meta helpers */
.post-author,
.post-views {
	white-space: nowrap;
}

.primary-nav__toggle.is-active .primary-nav__toggle-icon {
	background: transparent;
}

.primary-nav__toggle.is-active .primary-nav__toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.primary-nav__toggle.is-active .primary-nav__toggle-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.hero-section {
	background: var(--color-navy);
	max-height: 65vh;
	overflow: hidden;
}

.hero-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 68%) minmax(0, 32%);
	grid-template-rows: minmax(0, 1fr);
	height: 65vh;
	max-height: 65vh;
	min-height: 320px;
	overflow: hidden;
}

.hero-section__main {
	position: relative;
	min-height: 0;
	height: 100%;
	overflow: hidden;
}

.hero-section__sidebar {
	background: var(--color-white);
	border-left: 4px solid var(--color-accent);
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	max-height: 65vh;
	overflow: hidden;
}

.hero-feature {
	height: 100%;
	min-height: 0;
}

.hero-feature__link {
	display: block;
	height: 100%;
	min-height: 0;
	color: var(--color-white);
}

.hero-feature__media {
	position: relative;
	height: 100%;
	min-height: 0;
}

.hero-feature__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-feature__placeholder {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 50% 45%, rgba(255,255,255,0.06) 0%, transparent 50%),
		var(--color-navy);
}

.hero-feature__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
	background: linear-gradient(to top, rgba(18, 38, 48, 0.92) 0%, rgba(18, 38, 48, 0.4) 50%, transparent 100%);
}

.hero-feature__badge {
	margin-bottom: 16px;
}

.hero-feature__category {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 12px;
}

.hero-feature__title {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	max-width: 90%;
}

.hero-feature__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
}

.hero-feature__location {
	background: rgba(255, 255, 255, 0.12);
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
}

.hero-sidebar-item {
	flex: 1 1 0;
	min-height: 0;
	border-bottom: 1px solid var(--color-gray-200);
}

.hero-sidebar-item:last-child {
	border-bottom: none;
}

.hero-sidebar-item__link {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	height: 100%;
	padding: 12px 14px;
	transition: background var(--transition);
}

.hero-sidebar-item__link:hover {
	background: var(--color-gray-100);
}

.hero-sidebar-item__media {
	width: 110px;
	height: 110px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-gray-100);
}

.hero-sidebar-item__image,
.hero-sidebar-item__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-sidebar-item__placeholder {
	background:
		linear-gradient(135deg, var(--color-gray-200), var(--color-gray-100));
}

.hero-sidebar-item__body {
	min-width: 0;
}

.hero-sidebar-item__title {
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 1.35;
	margin-bottom: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hero-sidebar-item__excerpt {
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--color-gray-500);
	margin-bottom: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hero-sidebar-item__meta {
	font-size: 0.72rem;
	color: var(--color-text-muted);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Verdict badges
   -------------------------------------------------------------------------- */
.verdict-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-white);
	border-radius: var(--radius-sm);
	line-height: 1.4;
}

.verdict-badge--false { background: var(--verdict-false); }
.verdict-badge--misleading { background: var(--verdict-misleading); }
.verdict-badge--unverified { background: var(--verdict-unverified); }
.verdict-badge--true { background: var(--verdict-true); }
.verdict-badge--investigating {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.tag-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-white);
	border-radius: var(--radius-sm);
	line-height: 1.4;
	background: var(--color-navy);
}

.tag-badge--false { background: var(--verdict-false); }
.tag-badge--misleading { background: var(--verdict-misleading); }
.tag-badge--unverified { background: var(--verdict-unverified); }
.tag-badge--true { background: var(--verdict-true); }
.tag-badge--investigating { background: var(--verdict-unverified); }

/* --------------------------------------------------------------------------
   Info bar
   -------------------------------------------------------------------------- */
.info-bar {
	background: var(--color-navy-dark);
	color: var(--color-white);
	padding: 32px 0;
}

.info-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.info-bar__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
}

.info-bar__badge {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-right: 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.info-bar__badge:last-child {
	border-right: none;
	padding-right: 0;
}

.info-bar__badge-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: inline-block;
	width: fit-content;
}

.info-bar__badge-desc {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

.info-bar__inner--stats-only {
	justify-content: center;
}

.info-bar__inner--stats-only .info-bar__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	gap: 32px;
	align-items: center;
}

.info-bar__stats {
	display: flex;
	gap: 40px;
}

.info-bar__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 0 16px;
	position: relative;
}

.info-bar__inner--stats-only .info-bar__stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -16px;
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-50%);
}

.info-bar__stat-value {
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.1;
}

.info-bar__stat-label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   Country filter
   -------------------------------------------------------------------------- */
.country-filter {
	background: var(--color-gray-100);
	border-bottom: 1px solid var(--color-gray-200);
	padding: 16px 0;
}

.country-filter__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.country-filter__label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.country-filter__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.country-pill-btn {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	font-size: 0.78rem;
	font-weight: 500;
	font-family: var(--font-sans);
	color: var(--color-gray-600);
	background: var(--color-white);
	border: 1px solid var(--color-gray-300);
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
	text-decoration: none;
}

.country-pill-btn:hover {
	border-color: var(--color-navy);
	color: var(--color-navy);
}

.country-pill-btn.is-active {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: var(--color-white);
}

.country-pill-btn--hidden {
	display: none;
}

.country-pill-btn--hidden.is-visible {
	display: inline-flex;
}

.country-pill-btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.country-pill-btn--more {
	background: transparent;
	border-style: dashed;
	color: var(--color-text-muted);
}

.latest-filter-empty {
	grid-column: 1 / -1;
	padding: 32px 0;
	text-align: center;
	color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */
.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--color-gray-300);
}

.section-header__title {
	font-family: var(--font-serif);
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--color-navy);
}

.section-header__link {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
	white-space: nowrap;
	transition: color var(--transition);
}

.section-header__link:hover {
	color: var(--color-accent-hover);
}

/* --------------------------------------------------------------------------
   Home sections
   -------------------------------------------------------------------------- */
.home-sections {
	padding: 48px 0 64px;
}

.home-section {
	margin-bottom: 56px;
}

.home-section:last-child {
	margin-bottom: 0;
}

.home-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

/* --------------------------------------------------------------------------
   Fact cards
   -------------------------------------------------------------------------- */
.card-grid {
	display: grid;
	gap: 24px;
}

.card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.fact-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition), transform var(--transition);
}

.fact-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.fact-card__link {
	display: block;
	color: inherit;
}

.fact-card__visual {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.fact-card__visual--blue { background: var(--card-blue); }
.fact-card__visual--pink { background: var(--card-pink); }
.fact-card__visual--green { background: var(--card-green); }
.fact-card__visual--purple { background: var(--card-purple); }

.fact-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fact-card__placeholder {
	width: 100%;
	height: 100%;
	opacity: 0.3;
	background:
		radial-gradient(circle at 50% 50%, rgba(0,0,0,0.08) 0%, transparent 60%);
}

.fact-card__badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
}

.fact-card__body {
	padding: 20px;
}

.fact-card__source {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.fact-card__title {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-navy);
	margin-bottom: 16px;
}

.fact-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.78rem;
	color: var(--color-text-muted);
}

.country-pill {
	display: inline-block;
	padding: 3px 10px;
	font-size: 0.72rem;
	background: var(--color-gray-100);
	border-radius: var(--radius-pill);
	color: var(--color-gray-600);
}

.fact-card__byline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
	font-size: 0.72rem;
	color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Round-up list
   -------------------------------------------------------------------------- */
.roundup-list {
	display: flex;
	flex-direction: column;
}

.roundup-item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--color-gray-200);
	align-items: start;
}

.roundup-item:first-child {
	padding-top: 0;
}

.roundup-item__number {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-gray-300);
	line-height: 1;
}

.roundup-item__title {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 6px;
}

.roundup-item__title a {
	color: var(--color-navy);
	transition: color var(--transition);
}

.roundup-item__title a:hover {
	color: var(--color-accent);
}

.roundup-item__meta {
	font-size: 0.78rem;
	color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Sidebar widgets
   -------------------------------------------------------------------------- */
.site-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.widget-coverage {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.widget-coverage__title {
	background: var(--color-navy-widget);
	color: var(--color-white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 20px;
	margin: 0;
}

.widget-coverage__list {
	padding: 0;
}

.widget-coverage__item {
	border-bottom: 1px solid var(--color-gray-200);
}

.widget-coverage__item:last-child {
	border-bottom: none;
}

.widget-coverage__link,
.widget-coverage__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	gap: 12px;
}

.widget-coverage__link:hover {
	background: var(--color-gray-100);
}

.widget-coverage__name {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--color-navy);
}

.widget-coverage__count {
	font-size: 0.72rem;
	color: var(--color-text-muted);
	background: var(--color-gray-100);
	padding: 3px 10px;
	border-radius: var(--radius-pill);
	white-space: nowrap;
}

.widget-coverage__more {
	padding: 12px 20px;
	font-size: 0.78rem;
	font-style: italic;
	color: var(--color-text-muted);
}

.widget-coverage__more a:hover {
	color: var(--color-accent);
}

.widget-submit-claim {
	background: var(--color-navy-widget);
	color: var(--color-white);
	padding: 28px 24px;
	border-radius: var(--radius-md);
}

.widget-submit-claim__title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.widget-submit-claim__desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 20px;
	line-height: 1.5;
}

.widget-submit-claim__form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	color: var(--color-white);
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-sm);
	resize: vertical;
	margin-bottom: 12px;
}

.widget-submit-claim__form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.widget-submit-claim__form textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.35);
}

.widget-submit-claim__btn {
	width: 100%;
	padding: 12px 20px;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--color-white);
	background: var(--color-accent);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
}

.widget-submit-claim__btn:hover {
	background: var(--color-accent-hover);
}

.site-sidebar .widget_media_image img,
.site-sidebar .widget_custom_html img,
.site-sidebar .widget_text img {
	display: block;
	max-width: 110px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Page header
   -------------------------------------------------------------------------- */
.page-header {
	padding: 40px 24px 24px;
}

.page-header__title {
	font-family: var(--font-serif);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--color-navy);
}

.page-header__description {
	margin-top: 12px;
	color: var(--color-text-muted);
	max-width: 640px;
}

/* --------------------------------------------------------------------------
   Content area layout
   -------------------------------------------------------------------------- */
.content-area {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	padding: 32px 24px 64px;
	align-items: start;
}

.content-area__main--single {
	min-width: 0;
}

/* --------------------------------------------------------------------------
   Archive list
   -------------------------------------------------------------------------- */
.archive-list {
	display: flex;
	flex-direction: column;
}

.archive-item {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid var(--color-gray-200);
	align-items: start;
}

.archive-item:first-child {
	padding-top: 0;
}

.archive-item__number {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-gray-300);
	line-height: 1;
}

.archive-item__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.archive-item__category {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.archive-item__title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
}

.archive-item__title a {
	color: var(--color-navy);
	transition: color var(--transition);
}

.archive-item__title a:hover {
	color: var(--color-accent);
}

.archive-item__meta {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.archive-item__excerpt {
	font-size: 0.88rem;
	color: var(--color-gray-500);
	line-height: 1.55;
}

.archive-item__thumb {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
}

.archive-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --------------------------------------------------------------------------
   Single post
   -------------------------------------------------------------------------- */
.single-post__header {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-gray-200);
	padding: 48px 0 40px;
}

.single-post__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.single-post__category,
.single-post__country {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.single-post__title {
	font-family: var(--font-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-navy);
	margin-bottom: 20px;
}

.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-size: 0.82rem;
	color: var(--color-text-muted);
}

.single-post__claim {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.72rem;
}

.single-post__featured {
	padding: 32px 24px 0;
}

.single-post__figure {
	margin: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.single-post__figure figcaption {
	padding: 10px 0 0;
	font-size: 0.82rem;
	color: var(--color-text-muted);
	text-align: center;
}

.single-post__content {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--color-gray-600);
}

.single-post__content > *:last-child {
	margin-bottom: 0;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
	font-family: var(--font-serif);
	color: var(--color-navy);
	margin: 2rem 0 1rem;
}

.single-post__content h2 { font-size: 1.5rem; }
.single-post__content h3 { font-size: 1.25rem; }

.single-post__content a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.single-post__content blockquote {
	margin: 1.5rem 0;
	padding: 16px 24px;
	border-left: 4px solid var(--color-accent);
	background: var(--color-white);
	font-style: italic;
	color: var(--color-gray-500);
}

.single-post__content ul,
.single-post__content ol {
	margin: 0 0 1.5rem;
	padding-left: 1.5rem;
	list-style: disc;
}

.single-post__content ol {
	list-style: decimal;
}

.single-post__authors {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 32px 0 36px;
	border-top: 1px solid var(--color-gray-200);
	margin-top: 48px;
}

.single-post__authors-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.single-post__authors-list {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.6;
	color: var(--color-navy);
}

.single-post__author-name {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

a.single-post__author-name:hover {
	color: var(--color-accent);
}

.single-post__footer {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--color-gray-200);
}

.single-post__tags {
	font-size: 0.85rem;
	margin-bottom: 24px;
}

.single-post__tags-label {
	font-weight: 600;
	color: var(--color-navy);
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.post-navigation .nav-links {
	display: contents;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	padding: 16px;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation__label {
	display: block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 4px;
}

.post-navigation__title {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   Single page
   -------------------------------------------------------------------------- */
.single-page__content {
	padding-bottom: 64px;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--color-gray-600);
}

.single-page__content h2,
.single-page__content h3 {
	font-family: var(--font-serif);
	color: var(--color-navy);
	margin: 2rem 0 1rem;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--color-gray-600);
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Search form
   -------------------------------------------------------------------------- */
.search-form {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	max-width: 480px;
}

.search-form__input {
	flex: 1;
	padding: 10px 14px;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	border: 1px solid var(--color-gray-300);
	border-radius: var(--radius-sm);
	background: var(--color-white);
}

.search-form__input:focus {
	outline: none;
	border-color: var(--color-navy);
}

.search-form__submit {
	padding: 10px 20px;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-white);
	background: var(--color-navy);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
}

.search-form__submit:hover {
	background: var(--color-navy-mid);
}

.no-results {
	padding: 40px 0;
}

.no-results h2 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--color-navy);
	margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-footer);
	color: rgba(255, 255, 255, 0.7);
	margin-top: auto;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 48px;
	padding: 56px 24px 48px;
}

.site-footer__logo {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-white);
	display: inline-block;
	margin-bottom: 8px;
}

.site-footer__dot {
	color: var(--color-accent);
}

.site-footer__tagline {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 16px;
}

.site-footer__description {
	font-size: 0.85rem;
	line-height: 1.6;
	max-width: 320px;
	margin-bottom: 24px;
}

.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.6);
}

.footer-badge--accent {
	color: var(--color-accent);
	border-color: rgba(232, 78, 54, 0.4);
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.footer-nav-col__title {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 16px;
}

.footer-nav-col__list li {
	margin-bottom: 10px;
}

.footer-nav-col__list a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	transition: color var(--transition);
}

.footer-nav-col__list a:hover {
	color: var(--color-white);
}

.footer-nav-col__more a {
	font-style: italic;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
}

/* --------------------------------------------------------------------------
   WordPress alignment utilities
   -------------------------------------------------------------------------- */
.alignwide {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero-section {
		max-height: none;
		overflow: visible;
	}

	.hero-section__inner {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
		min-height: 0;
		overflow: visible;
	}

	.hero-section__main {
		height: 65vh;
		max-height: 65vh;
		min-height: 280px;
	}

	.hero-section__sidebar {
		max-height: none;
		height: auto;
		overflow: visible;
		border-left: none;
		border-top: 4px solid var(--color-accent);
	}

	.hero-sidebar-item {
		flex: 0 0 auto;
	}

	.hero-sidebar-item__link {
		height: auto;
	}

	.card-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-layout,
	.content-area {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.site-header__inner {
		flex-wrap: wrap;
		gap: 12px;
	}

	.site-branding {
		flex: 1;
		min-width: 0;
	}

	.site-header__actions {
		gap: 8px;
	}

	.site-header__inner .primary-nav__toggle,
	.site-header__actions .primary-nav__toggle {
		display: block;
	}

	.language-dropdown__toggle,
	.country-dropdown__toggle {
		padding: 6px 10px;
		max-width: none;
	}

	.language-dropdown__label,
	.country-dropdown__label {
		display: none;
	}

	.language-dropdown__menu,
	.country-dropdown__menu {
		position: fixed;
		top: calc(var(--header-height) + 8px);
		right: 16px;
		left: 16px;
		width: auto;
		min-width: 0;
		max-height: min(320px, calc(100vh - var(--header-height) - 32px));
	}

	.primary-nav {
		order: 3;
		flex: 1 1 100%;
		position: static;
	}

	.primary-nav__list {
		display: none;
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-gray-200);
		padding: 8px 24px 16px;
		gap: 0;
		z-index: 99;
	}

	.primary-nav__list.is-open {
		display: flex;
	}

	.primary-nav__list a {
		padding: 12px 0;
		border-bottom: none;
	}

	.hannibal-modal {
		padding: 16px;
	}

	.hannibal-modal__dialog {
		padding: 28px 22px 22px;
	}

	.info-bar {
		padding: 24px 0;
	}

	.info-bar__inner--stats-only .info-bar__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.info-bar__stat {
		padding: 0 8px;
	}

	.info-bar__inner--stats-only .info-bar__stat:not(:last-child)::after {
		height: 36px;
		right: -6px;
	}

	.info-bar__stat-value {
		font-size: 1.1rem;
	}

	.info-bar__stat-label {
		font-size: 0.62rem;
	}

	.card-grid--3 {
		grid-template-columns: 1fr;
	}

	.archive-item {
		grid-template-columns: 40px 1fr;
	}

	.archive-item__thumb {
		display: none;
	}

	.site-footer__nav {
		grid-template-columns: 1fr;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.hero-sidebar-item__link {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 12px;
		padding: 12px 14px;
		height: auto;
	}

	.hero-sidebar-item__media {
		width: 88px;
		height: 88px;
	}
}

@media (max-width: 480px) {
	.hero-feature__overlay {
		padding: 24px;
	}
}
