/* albinfo-v2 bundle: site-core.css — generated; do not edit */

/* --- tokens.css --- */
/*
  Design tokens — source of truth.
  Pulled 1:1 from the Figma variables of the W-ALBINFO file (May 2026).
  If you change a value here, every component picks it up automatically.
*/

:root {
	/* ---------- color ---------- */
	--c-dark:          #000000;
	--c-light:         #ffffff;
	--c-purple-dark:   #14111A;
	--c-red:           #E63946;  /* "costum red" — brand accent */
	--c-grey-medium:   #C7CAD5;
	--c-grey-light:    #F4F4F9;
	--c-grey-dark:     #9A9DA5;

	/* Semantic aliases (use these in components, not the raw colors). */
	--c-bg:            var(--c-light);
	--c-bg-elev:       var(--c-grey-light);
	--c-fg:            var(--c-dark);
	--c-fg-muted:      var(--c-grey-dark);
	--c-border:        var(--c-grey-medium);
	--c-accent:        var(--c-red);
	--c-on-accent:     var(--c-light);
	--c-overlay:       rgba(0, 0, 0, 1);

	/* ---------- typography ---------- */
	/* Source Sans 3 (Aptos stand-in) — see fonts-source-sans-3.css */
	--ff-base: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

	/* type scale: --fs-* size,  --lh-* line-height */
	--fs-hero:        48px;   --lh-hero:       60px;          /* 700 — Hero Headline */
	--fs-h1:          36px;   --lh-h1:         42px;          /* 700 */
	--fs-h2:          24px;   --lh-h2:         1.1;           /* 700 */
	--fs-h3:          21px;   --lh-h3:         1.2;           /* 600 */
	--fs-read:        21px;   --lh-read:       1.5;           /* 600 — body in article */
	--fs-newstitle:   18px;   --lh-newstitle:  24px;          /* 600 — card title */
	--fs-link-18:     18px;   --lh-link-18:    18px;          /* 600 */
	--fs-link-18-l:   18px;   --lh-link-18-l:  18px;          /* 300 */
	--fs-heading-14:  14px;   --lh-heading-14: 18.4px;        /* 600 ALL CAPS section labels */
	--fs-link-14:     14px;   --lh-link-14:    19px;          /* 600 */
	--fs-label-12:    12px;   --lh-label-12:   18px;          /* 400 — small label / meta */

	/* font weights */
	--fw-light:    300;
	--fw-regular:  400;
	--fw-semibold: 600;
	--fw-bold:     700;

	/* letter-spacing
	   NOTE: Figma tokens declare letterSpacing: -3 / -4 for some uppercase styles.
	   Those values are in Figma's px units which translate to ~-0.2em in CSS.
	   Flag with design: -3 on UPPERCASE looks squashed; usually want positive. */
	--ls-tight:     -0.02em;
	--ls-tighter:   -0.04em;
	--ls-normal:    0;

	/* ---------- effects ---------- */
	--shadow-card:  0 4px 4px 0 rgba(37, 37, 43, 0.10); /* "Drop Shadow" / "menu" */

	/* ---------- radii ---------- */
	--radius-sm: 4px;
	--radius-md: 8px;   /* card radius from Figma */
	--radius-lg: 16px;
	--radius-pill: 9999px;

	/* ---------- spacing scale (4px base) ---------- */
	--space-1:  4px;
	--space-2:  8px;
	--space-3:  12px;
	--space-4:  16px;
	--space-5:  20px;
	--space-6:  24px;
	--space-8:  32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;   /* matches the 80px gutter */

	/* ---------- layout ---------- */
	--canvas-width:    1440px;
	--container-width: 1280px;
	--container-gutter: 80px;  /* per-side gutter on desktop */

	/* breakpoints — used as media queries, expressed as min-width */
	--bp-sm:  480px;
	--bp-md:  768px;
	--bp-lg:  1024px;
	--bp-xl:  1280px;
	--bp-2xl: 1440px;
}

/* --- base.css --- */
/*
  Minimal modern reset + base typography for albinfo-v2.
  Mostly Andy Bell's modern reset, trimmed.
*/

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
	min-height: 100vh;
	font-family: var(--ff-base);
	font-size: var(--fs-newstitle);
	line-height: var(--lh-newstitle);
	color: var(--c-fg);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select { font: inherit; }

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

a {
	color: inherit;
	text-decoration: none;
}
a:focus-visible { text-decoration: underline; }

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

/* Container helper used by all page templates. */
.l-container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--space-4);
}
@media and (min-width: 1024px) and (max-width: 1320px) {
	.l-container { padding-inline: var(--container-gutter); }
}

/* Visually-hidden but screen-reader accessible. */
.u-sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* 3-up portrait row used on the home + magazine teaser. Collapses on mobile. */
.c-portrait-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}
@media (max-width: 768px) {
	.c-portrait-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.c-portrait-row { grid-template-columns: 1fr; }
}

/* Pagination (WP paginate_links output wrapped in .c-pagination). */
.c-pagination {
	display: flex;
	justify-content: center;
	margin-top: var(--space-8);
}

.c-pagination .page-numbers,
.c-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-pagination a.page-numbers,
.c-pagination span.page-numbers,
.c-pagination a,
.c-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 3px;
	padding-inline: var(--space-3);
	border-radius: var(--radius-md);
	font-size: var(--fs-link-14);
	font-weight: var(--fw-semibold);
	line-height: 1;
	color: var(--c-fg);
	border: 1px solid var(--c-border);
	background: var(--c-light);
	text-decoration: none;
	transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.c-pagination a.page-numbers:hover,
.c-pagination a.page-numbers:focus-visible,
.c-pagination a:hover,
.c-pagination a:focus-visible {
	background: var(--c-bg-elev);
	border-color: var(--c-fg);
	color: var(--c-fg);
	text-decoration: none;
}

.c-pagination .page-numbers.current,
.c-pagination .current {
	background: var(--c-fg);
	color: var(--c-light);
	border-color: var(--c-fg);
}

.c-pagination .page-numbers.dots,
.c-pagination .dots {
	min-width: auto;
	padding-inline: var(--space-1);
	border-color: transparent;
	background: transparent;
}

/* Content thumbnail zoom on hover (cards, heroes, media blocks). */
:where(
	[class*="__media"] img,
	[class*="__media"] [class*="__img"]:not([class*="--placeholder"])
) {
	transition: transform 250ms ease;
}

:where(
	[class*="__media"]:hover,
	[class*="__media"]:focus-visible,
	.c-card-vertical:hover,
	.c-card-vertical:focus-visible,
	.c-card-horizontal:hover,
	.c-card-horizontal:focus-visible,
	.c-biz-card:hover,
	.c-biz-card:focus-within,
	.c-reel:hover,
	.c-reel:focus-visible,
	.c-podcast:hover,
	.c-podcast:focus-visible,
	.c-feature-bleed:hover,
	.c-feature-bleed:focus-visible,
	.c-hero-half:hover,
	.c-hero-half:focus-visible,
	.c-hero-rotator__slide:hover,
	.c-hero-rotator__slide:focus-visible
) :where(
	[class*="__media"] img,
	[class*="__media"] [class*="__img"]:not([class*="--placeholder"])
) {
	transform: scale(1.05);
}

.c-single__content figure img {
	transition: transform 250ms ease;
}
.c-single__content figure:hover img,
.c-single__content figure:focus-within img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	:where(
		[class*="__media"] img,
		[class*="__media"] [class*="__img"]:not([class*="--placeholder"]),
		.c-single__content figure img
	) {
		transition: none;
	}

	:where(
		[class*="__media"]:hover,
		[class*="__media"]:focus-visible,
		.c-card-vertical:hover,
		.c-card-vertical:focus-visible,
		.c-card-horizontal:hover,
		.c-card-horizontal:focus-visible,
		.c-biz-card:hover,
		.c-biz-card:focus-within,
		.c-reel:hover,
		.c-reel:focus-visible,
		.c-podcast:hover,
		.c-podcast:focus-visible,
		.c-feature-bleed:hover,
		.c-feature-bleed:focus-visible,
		.c-hero-half:hover,
		.c-hero-half:focus-visible,
		.c-hero-rotator__slide:hover,
		.c-hero-rotator__slide:focus-visible
	) :where(
		[class*="__media"] img,
		[class*="__media"] [class*="__img"]:not([class*="--placeholder"])
	),
	.c-single__content figure:hover img,
	.c-single__content figure:focus-within img {
		transform: none;
	}
}

/* --- site-header.css --- */
/*
  Component: site header (top bar + main nav).
  Figma: 545:8233 (top bar) + 30:926 (main nav).
*/

.c-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--c-light);
	transition: box-shadow 200ms ease;
}

.c-site-header.is-scrolled {
	box-shadow: var(--shadow-card);
}

/* ---------- Top bar ---------- */
.c-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 46px;
	padding-block: var(--space-4);
	column-gap: var(--space-4);
}

.c-topbar__lang {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 0;
}
.c-topbar__lang li + li .c-topbar__lang-link {
	border-left: 1px solid var(--c-border);
}
.c-topbar__lang-link {
	display: inline-flex;
	align-items: center;
	padding-inline: 6px;
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-grey-dark);
	text-decoration: none;
}
.c-topbar__lang-link.is-active {
	color: var(--c-accent);
}

.c-topbar.c-topbar--cat {
	justify-content: space-between;
}

.c-topbar__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c-fg);
	text-decoration: none;
	font-weight: var(--fw-bold);
	font-size: 22px;
	letter-spacing: -0.4px;
}
.c-topbar__brand img,
.c-topbar__brand-logo {
	display: block;
	height: 48px;
	width: auto;
	max-width: min(220px, 48vw);
}

.c-topbar__brand-logo {
	color: var(--c-fg);
}

.c-topbar__actions {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--space-2);
}
.c-topbar.c-topbar--cat .c-topbar__actions {
	justify-content: flex-end;
}

.c-topbar__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: var(--radius-pill);
	background: transparent;
	border: 1px solid transparent;
	color: var(--c-fg);
	cursor: pointer;
	transition: background 150ms ease, border-color 150ms ease;
}
.c-topbar__icon-btn:hover {
	background: var(--c-grey-light);
	border-color: var(--c-border);
}
.c-topbar__icon-btn:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
}

/* ---------- Main nav ---------- */
.c-main-nav {
	display: flex;
	align-items: center;
	height: 44px;
	gap: var(--space-3);
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}

.c-main-nav__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
	color: inherit;
	text-decoration: none;
	padding: 4px;
	border-radius: var(--radius-sm);
}
.c-main-nav__brand:hover { background: var(--c-grey-light); }
.c-main-nav__brand:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
}
.c-main-nav__brand svg { display: block; }

.c-main-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 32px;
	background: transparent;
	border: 0;
	color: var(--c-fg);
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}
.c-main-nav__toggle:hover { background: var(--c-grey-light); border-radius: var(--radius-sm); }
.c-main-nav__toggle:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

.c-main-nav__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.c-main-nav__item { display: flex; }

.c-main-nav__link,
.c-main-nav__list a {
	display: inline-flex;
	align-items: center;
	padding: 10px;
	font-size: var(--fs-link-18);
	line-height: var(--lh-link-18);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.6px;
	color: var(--c-fg);
	text-decoration: none;
	white-space: nowrap;
}
.c-main-nav__link:hover,
.c-main-nav__link.current-menu-item,
.c-main-nav__list a:hover {
	color: var(--c-accent);
	text-decoration: none;
}

.c-main-nav .menuTrigger > a {
	cursor: pointer;
}

/* ---------- Bizneset compact header ---------- */
.c-biz-nav {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	height: 44px;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}

.c-biz-nav__bar {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	gap: var(--space-5);
}

.c-biz-nav__title {
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
	font-weight: var(--fw-bold);
	letter-spacing: -0.6px;
	color: var(--c-fg);
	text-decoration: none;
	white-space: nowrap;
}

.c-biz-nav__list {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	flex: 1;
	min-width: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.c-biz-nav__list::-webkit-scrollbar {
	display: none;
}

.c-biz-nav__item {
	display: flex;
	flex-shrink: 0;
}

.c-biz-nav__link {
	display: inline-flex;
	align-items: center;
	padding-block: 6px;
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-fg);
	text-decoration: none;
	white-space: nowrap;
}

.c-biz-nav__link:hover,
.c-biz-nav__link.is-current {
	color: var(--c-accent);
	text-decoration: none;
}

/* ---------- Category header nav (Figma 91:5808) ---------- */
.c-cat-nav {
	display: flex;
	align-items: center;
	gap: var(--space-8);
	min-height: 49px;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}

.c-cat-nav__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	min-width: 0;
}

.c-cat-nav .c-topbar__actions {
	flex: 0 0 auto;
	max-width: none;
	justify-content: flex-end;
	margin-left: var(--space-2);
}

.c-cat-nav__list {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	max-width: none;
	min-width: 0;
	list-style: none;
	margin: 0;
	padding: 0 var(--space-2) 0 0;
	overflow-x: auto;
	z-index: 1;
}

.c-cat-nav__item { display: flex; flex-shrink: 0; }
.c-cat-nav__item--title { margin-right: var(--space-2); }

.c-cat-nav__title {
	font-size: var(--fs-h1);          /* 36px / 700 */
	line-height: var(--lh-h1);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tighter);
	color: var(--c-fg);
	text-decoration: none;
	white-space: nowrap;
}
.c-cat-nav__title:hover { text-decoration: none; }

.c-cat-nav__link {
	display: inline-flex;
	align-items: center;
	padding-inline: var(--space-2);
	font-size: var(--fs-link-18);     /* 18px / 600 */
	line-height: var(--lh-link-18);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.6px;
	color: var(--c-fg);
	text-decoration: none;
	white-space: nowrap;
}
.c-cat-nav__link:hover,
.c-cat-nav__link.is-current {
	color: var(--c-accent);
	text-decoration: none;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
	.c-topbar {
		height: 56px;
	}
	.c-topbar.c-topbar--cat {
		justify-content: space-between;
	}
	.c-topbar__lang { order: 0; }
	.c-topbar__brand { order: 1; }
	.c-topbar__actions { order: 2; }

	.c-main-nav__list {
		/* Hide horizontal menu on small screens — the hamburger opens a drawer. */
		display: none;
	}

	.c-biz-nav {
		gap: var(--space-2);
	}

	.c-biz-nav__bar {
		gap: var(--space-3);
	}

	.c-biz-nav__title {
		font-size: var(--fs-link-18);
		line-height: var(--lh-link-18);
	}

	.c-biz-nav__list {
		gap: var(--space-3);
	}

	.c-biz-nav__link {
		font-size: var(--fs-link-12);
		line-height: var(--lh-link-12);
	}

	.c-cat-nav { gap: var(--space-3); }
	.c-cat-nav__list {
		overflow-x: auto;
		scrollbar-width: none;
	}
	.c-cat-nav__list::-webkit-scrollbar { display: none; }
	.c-cat-nav__title {
		font-size: var(--fs-h2);   /* 24px on mobile */
		line-height: var(--lh-h2);
	}
}

/* --- mega-menu.css --- */
/*
  Component: mega menu overlay.
  Figma: 703:11732.

  Full-bleed overlay that drops from the top of the viewport. Opens for both
  the hamburger and the search button (search-focus only differs).
*/

.c-mega {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: block;
}

.c-mega[hidden] { display: none; }

.c-mega__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 200ms ease;
}

.c-mega__panel {
	position: relative;
	background: var(--c-light);
	box-shadow: var(--shadow-card);
	padding-bottom: var(--space-8);
	transform: translateY(-8px);
	opacity: 0;
	transition: opacity 220ms ease, transform 220ms ease;
}

.c-mega.is-open .c-mega__backdrop { opacity: 1; }
.c-mega.is-open .c-mega__panel {
	transform: translateY(0);
	opacity: 1;
}

/* ---------- top strip (80px) ---------- */
.c-mega__top {
	position: sticky;
	top: 0;
	background: var(--c-light);
	border-bottom: 1px solid var(--c-border);
	height: 80px;
	display: flex;
	align-items: center;
}

.c-mega__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-8);
	height: 100%;
}

.c-mega__brand-group {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.c-mega__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: var(--radius-sm);
	color: var(--c-fg);
	cursor: pointer;
}
.c-mega__close:hover { background: var(--c-grey-light); }
.c-mega__close:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
}

.c-mega__brand {
	display: inline-flex;
	align-items: center;
	color: var(--c-fg);
	font-weight: var(--fw-bold);
	font-size: 22px;
	letter-spacing: -0.4px;
	text-decoration: none;
}
.c-mega__brand img,
.c-mega__brand-logo { height: 48px; width: auto; max-width: 220px; display: block; }

.c-mega__utils {
	display: flex;
	align-items: center;
	gap: var(--space-8);
}

.c-mega__lang {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.c-mega__lang li + li .c-mega__lang-link {
	border-left: 1px solid var(--c-border);
}
.c-mega__lang-link {
	display: inline-flex;
	align-items: center;
	padding-inline: 6px;
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-grey-dark);
	text-decoration: none;
}
.c-mega__lang-link.is-active { color: var(--c-accent); }

/* search input (Figma 414×42, F4F4F9 bg, 8px radius) */
.c-mega__search {
	position: relative;
	width: 414px;
	max-width: 100%;
}
.c-mega__search-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	width: 24px;
	height: 24px;
	/* color: var(--c-fg-muted); */
	pointer-events: none;
}
.c-mega__search-input {
	width: 100%;
	height: 42px;
	padding: 0 14px 0 44px;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--c-grey-light);
	font-size: var(--fs-link-14);
	color: var(--c-fg);
}
.c-mega__search-input::placeholder { color: var(--c-fg-muted); }
.c-mega__search-input:focus {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
}

/* ---------- columns ---------- */
.c-mega__body {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-6);
	padding-top: var(--space-8);
}

.c-mega__col {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	min-width: 0;
	flex: 1 1 0;
	max-width: 148px;
}

.c-mega__col-title {
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.42px;
	text-transform: uppercase;
	color: var(--c-grey-dark);
	margin: 0;
}

.c-mega__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	margin: 0;
	padding: 0;
	list-style: none;
}

/* wp_nav_menu wraps each item in <li class="menu-item"><a>…</a></li>, so we
   target the inner <a> with our hover styles too. */
.c-mega__link,
.c-mega__list a {
	display: inline-block;
	font-size: var(--fs-link-18);
	line-height: var(--lh-link-18);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.6px;
	color: var(--c-fg);
	text-decoration: none;
	font-weight: 300;
}
.c-mega__link:hover,
.c-mega__list a:hover,
.c-mega__link.is-active,
.c-mega__list a.current-menu-item {
	color: var(--c-accent);
	text-decoration: none;
}

/* ---------- footer wordmark ---------- */
.c-mega__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	padding-top: var(--space-8);
}
.c-mega__rule {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--c-border);
}
.c-mega__wordmark {
	display: inline-flex;
	color: var(--c-fg);
	text-decoration: none;
	font-weight: var(--fw-bold);
	font-size: 16px;
}
.c-mega__wordmark img { height: 17px; width: auto; }
.c-mega__wordmark svg {
	display: block;
	width: 69px;
	height: 17px;
}

/* ---------- when active, prevent body scroll ---------- */
body.has-mega-open { overflow: hidden; }

/* ---------- responsive: stack columns ---------- */
@media (max-width: 900px) {
	.c-mega__top { height: 64px; }
	.c-mega__top-inner { gap: var(--space-3); }
	.c-mega__utils { gap: var(--space-3); flex: 1; justify-content: flex-end; }
	.c-mega__lang { display: none; }
	.c-mega__search { width: auto; flex: 1; max-width: none; }

	.c-mega__body {
		flex-direction: column;
		gap: var(--space-6);
	}
	.c-mega__col {
		flex: 0 0 auto;
		max-width: none;
		width: 100%;
		gap: var(--space-3);
	}
	.c-mega__list { gap: var(--space-3); }
}

/* Hide overflow scrollbar but allow scroll inside the panel itself. */
.c-mega__panel {
	max-height: 100vh;
	overflow-y: auto;
}

/* --- site-footer.css --- */
/*
  Component: site footer.
  Figma: "footer" symbol (62:3052) — 1280×404.
*/

.c-site-footer {
	background: var(--c-light);
	padding-block: var(--space-12) var(--space-6);
	margin-top: var(--space-16);
}

.c-site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.c-site-footer__rule {
	display: block;
	height: 1px;
	background: var(--c-fg);
}
.c-site-footer__rule--thick { height: 4px; }

/* ---------- Primary footer nav (mirror of header) ---------- */
.c-site-footer__primary-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-site-footer__primary-list a {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: 10px;
	font-size: var(--fs-link-18);
	line-height: var(--lh-link-18);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.6px;
	color: var(--c-fg);
	text-decoration: none;
}
.c-site-footer__primary-list a:hover {
	color: var(--c-accent);
	text-decoration: none;
}

/* ---------- Disclaimer ---------- */
.c-site-footer__disclaimer {
	font-size: var(--fs-label-12);
	line-height: var(--lh-label-12);
	max-width: 607px;
	color: var(--c-fg);
}

/* ---------- Brand row ---------- */
.c-site-footer__brandrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
	flex-wrap: wrap;
}
.c-site-footer__brand img,
.c-site-footer__brand svg,
.c-site-footer__brand-logo {
	height: 44px;
	width: auto;
	max-width: 180px;
	display: block;
}
.c-site-footer__brand {
	color: var(--c-fg);
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.c-site-footer__tagline {
	font-size: 11px;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-fg-muted, #666);
	font-weight: var(--fw-semibold);
}

.c-site-footer__secondary-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8);
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-site-footer__secondary-list a {
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-grey-dark);
	text-decoration: none;
}
.c-site-footer__secondary-list a:hover { color: var(--c-fg); }

/* ---------- Bottom row ---------- */
.c-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	flex-wrap: wrap;
}
.c-site-footer__copyright {
	font-size: var(--fs-label-12);
	line-height: var(--lh-label-12);
	color: var(--c-fg);
}
.c-site-footer__socials {
	display: flex;
	gap: var(--space-2);
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-site-footer__socials a {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	color: var(--c-fg);
	transition: color 150ms ease;
}
.c-site-footer__socials a:hover { color: var(--c-accent); }

/* --- section-header.css --- */
/*
  Component: section header.
  Figma: "section header" (62:2595).

  Horizontal divider line + label row (bullet + uppercase title on left,
  "see all" link with arrow icon on right).
*/

.c-section-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.c-section-header__rule {
	display: block;
	height: 1px;
	width: 100%;
	background: var(--c-fg);
}

.c-section-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
}

.c-section-header__title {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-bold);
	letter-spacing: -0.42px;       /* Figma -3 → -0.42px at 14pt */
	text-transform: uppercase;
	color: var(--c-fg);
}

.c-section-header__bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--c-accent);   /* red dot — adds brand color to every section */
	flex-shrink: 0;
}

.c-section-header__more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-fg);
	text-decoration: none;
}
.c-section-header__more:hover,
.c-section-header__more:focus-visible {
	text-decoration: none;
}
.c-section-header__more:hover .c-section-header__arrow {
	transform: translateX(2px);
}

.c-section-header__arrow {
	display: inline-flex;
	width: 20px;
	height: 20px;
	transition: transform 200ms ease;
	color: var(--c-fg);
}

/* Featured variant — Figma 308:4766 / 1:2319. Red label + red "Shiko të gjitha" + tilted arrow. */
.c-section-header--featured .c-section-header__title {
	color: var(--c-accent);
}
.c-section-header--featured .c-section-header__more {
	color: var(--c-accent);
}
.c-section-header--featured .c-section-header__arrow {
	color: var(--c-accent);
}
.c-section-header--featured .c-section-header__more:hover .c-section-header__arrow {
	transform: translate(2px, -2px);
}

/* On mobile, the "see all" link wraps under the title with extra spacing. */
@media (max-width: 480px) {
	.c-section-header__row {
		flex-wrap: wrap;
		gap: var(--space-2);
	}
	.c-section-header__more { margin-left: auto; }
}

/* --- button.css --- */
/*
  Component: button.
  Figma: 314:6009 (primary, red) and label-button 281:6757 (ghost / outlined on dark).

  Variants:
    .c-btn--primary  solid red pill, white text (default red CTA)
    .c-btn--ghost    transparent, 1px border, used over imagery
    .c-btn--sm       compact (used inline next to titles)
*/

.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: 10px 14px;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	background: transparent;
	color: inherit;
	font-family: inherit;
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.42px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 150ms ease, border-color 150ms ease, color 150ms ease,
		transform 100ms ease;
}

.c-btn:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 2px;
}

.c-btn:active { transform: translateY(1px); }

/* ---- primary (Figma 314:6009) ---- */
.c-btn--primary {
	background: var(--c-accent);
	border-color: var(--c-accent);
	color: var(--c-on-accent);
}
.c-btn--primary:hover,
.c-btn--primary:focus-visible {
	background: #cf2f3c;
	border-color: #cf2f3c;
	color: var(--c-on-accent);
	text-decoration: none;
}

/* ---- ghost (transparent, white border — works on image overlays) ---- */
.c-btn--ghost {
	background: transparent;
	border-color: var(--c-on-accent);
	color: var(--c-on-accent);
}
.c-btn--ghost:hover,
.c-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	text-decoration: none;
}

/* ---- ghost-dark (used on light backgrounds) ---- */
.c-btn--ghost-dark {
	background: transparent;
	border-color: var(--c-fg);
	color: var(--c-fg);
}
.c-btn--ghost-dark:hover {
	background: var(--c-fg);
	color: var(--c-on-accent);
	text-decoration: none;
}

/* ---- size modifier ---- */
.c-btn--sm {
	padding: 6px 10px;
	font-size: 12px;
	line-height: 16px;
}

/* --- label.css --- */
/*
  Component: label / category tag pill.
  Figma: 281:6757.

  Used as an overlay chip on hero/card images and inline with article meta.
  Default: white 1px border, transparent fill, white uppercase text.
  Variant --solid: solid red fill.
  Variant --dark: dark text + dark border (used on light backgrounds).
*/

.c-label {
	display: inline-flex;
	align-items: center;
	padding: 10px;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-on-accent);
	background: transparent;
	color: var(--c-on-accent);
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.42px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

a.c-label:hover,
a.c-label:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	text-decoration: none;
}

.c-label--solid {
	background: var(--c-accent);
	border-color: var(--c-accent);
	color: var(--c-on-accent);
}
a.c-label--solid:hover,
a.c-label--solid:focus-visible {
	background: #cf2f3c;
	border-color: #cf2f3c;
}

.c-label--dark {
	border-color: var(--c-fg);
	color: var(--c-fg);
}
a.c-label--dark:hover,
a.c-label--dark:focus-visible {
	background: var(--c-fg);
	color: var(--c-on-accent);
}

/* compact variant — used in card meta rows */
.c-label--sm {
	padding: 4px 8px;
	font-size: 11px;
	line-height: 14px;
	border-radius: var(--radius-sm);
}

/* --- like.css --- */
/*
  Component: like (thumb-up toggle).
  Figma: 323:2987.

  Has two stacked icons — the outlined "off" state is shown by default,
  the filled red "on" state is revealed when [aria-pressed="true"].
*/

.c-like {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--c-fg);
	cursor: pointer;
	line-height: 1;
}

.c-like:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.c-like__icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
}
.c-like__icon--on  { display: none; }
.c-like[aria-pressed="true"] .c-like__icon--off { display: none; }
.c-like[aria-pressed="true"] .c-like__icon--on  { display: inline-flex; }

.c-like__count {
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-fg-muted);
}
.c-like[aria-pressed="true"] .c-like__count { color: var(--c-accent); }

/* --- card-vertical.css --- */
/*
  Component: vertical article card.

  Two variants:
    .c-card-vertical                     - "vertical article small"
                                           Image on top, meta + title below.
                                           Figma: 62:1873 (307×326 / 307×350 / 307×306).

    .c-card-vertical--overlay            - "vertical article small - inside text"
                                           Image fills the card, gradient overlay,
                                           white title pinned to bottom.
                                           Figma: 281:5456 (307×248).

  Sizes (apply on the wrapper):
    .c-card-vertical                     standard, image 248px tall
    .c-card-vertical--tall   (350)       image grows to fit
    .c-card-vertical--short  (306)       image shrinks
*/

.c-card-vertical {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);                   /* 8px between image and text block */
	color: var(--c-fg);
	text-decoration: none;
	background: transparent;
}

.c-card-vertical:hover,
.c-card-vertical:focus-visible {
	text-decoration: none;
}
.c-card-vertical:hover .c-card-vertical__title,
.c-card-vertical:focus-visible .c-card-vertical__title {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

/* Image area */
.c-card-vertical__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	aspect-ratio: 307 / 248;               /* default Figma ratio */
	background: var(--c-bg-elev);          /* shows while image loads */
	flex-shrink: 0;
}

.c-card-vertical--tall   .c-card-vertical__media { aspect-ratio: 307 / 350; }
.c-card-vertical--medium .c-card-vertical__media { aspect-ratio: 307 / 326; }
.c-card-vertical--short  .c-card-vertical__media { aspect-ratio: 307 / 306; }

.c-card-vertical__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.c-card-vertical__img--placeholder,
.c-card-vertical__media > .c-card-vertical__img--placeholder {
	width: 100%;
	height: 100%;
	min-height: 100%;
	display: block;
	background: linear-gradient(135deg, var(--c-grey-light), var(--c-grey-medium));
}

/* Text block (default variant) */
.c-card-vertical__body {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);                   /* 4px between meta and title */
	flex-shrink: 0;
}

.c-card-vertical:not(.c-card-vertical--overlay) .c-card-vertical__body {
	position: relative;
	z-index: 1;
	/* background: var(--c-bg); */
}

.c-card-vertical__meta {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: var(--lh-label-12);        /* keeps title aligned when date is missing */
	font-size: var(--fs-label-12);
	line-height: var(--lh-label-12);
	font-weight: var(--fw-regular);
	color: var(--c-fg);
}

.c-card-vertical__meta--empty {
	visibility: hidden;
}

.c-card-vertical__title {
	margin: 0;
	font-size: var(--fs-newstitle);
	line-height: var(--lh-newstitle);
	font-weight: var(--fw-semibold);
	color: var(--c-fg);

	/* Clamp to 3 lines so card heights stay even across rows. */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ------------------- Overlay variant ------------------- */
.c-card-vertical--overlay .c-card-vertical__media {
	aspect-ratio: 307 / 248;
}

.c-card-vertical--overlay .c-card-vertical__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: var(--space-4);
	z-index: 2;
	color: var(--c-light);
}

.c-card-vertical--overlay .c-card-vertical__title { color: var(--c-light); }
.c-card-vertical--overlay .c-card-vertical__meta  { color: var(--c-light); }

/* Gradient: transparent at 28.6% (matches Figma) → solid black at bottom. */
.c-card-vertical--overlay .c-card-vertical__media::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 73.4%;                          /* mirrors Figma 182/248 */
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.85) 80%,
		rgba(0, 0, 0, 1) 100%
	);
	pointer-events: none;
}

/* For the overlay variant the whole card is a positioning context */
.c-card-vertical--overlay {
	position: relative;
}

/* Optional: category pill above the title (used on some home rows in Figma) */
.c-card-vertical__cat {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: var(--radius-pill);
	background: var(--c-accent);
	color: var(--c-on-accent);
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: var(--ls-normal);
	width: max-content;
}

/* ------------------- Responsive grid host ------------------- */
/* Cards on the home & category pages sit in a 4-up grid at desktop, 2-up at
   tablet, 1-up at mobile. Hosts use .c-card-grid; cards don't change. */
.c-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
}
@media (min-width: 600px) {
	.c-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.c-card-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--space-4);
	}
}

/* Taller row gap used on category pages and multi-row home sections. */
.c-card-grid--gap-tall {
	row-gap: var(--space-10);  /* 40px */
}

/* Prevent flex children from overflowing narrow grid cells. */
.c-card-vertical {
	min-width: 0;
}

/* Don't stretch cards to the tallest row — keeps image + text block stacked. */
.c-card-grid > .c-card-vertical {
	align-self: start;
	height: auto;
}

/* --- card-horizontal.css --- */
/*
  Component: horizontal article card.
  Figma: "horizontal article left align small" (62:1869) — 429×182.

  Image-left, text-right. Stacks the text vertically (meta + title).
  Image is fixed width on desktop and shrinks proportionally on mobile.
*/

.c-card-horizontal {
	display: flex;
	gap: 14px;
	align-items: center;
	color: var(--c-fg);
	text-decoration: none;
	width: 100%;
	min-width: 0;  /* prevent overflow inside grid/flex cells */
}

.c-card-horizontal:hover .c-card-horizontal__title,
.c-card-horizontal:focus-visible .c-card-horizontal__title {
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.c-card-horizontal__media {
	flex-shrink: 0;
	width: 197px;
	aspect-ratio: 197 / 182;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--c-bg-elev);
	margin: 0;
}

.c-card-horizontal--compact .c-card-horizontal__media {
	width: 120px;
	aspect-ratio: 1 / 1;
}

/* Sidebar quick card — Figma 40:1873 "quick article left align small". */
.c-card-horizontal--sidebar {
	gap: 10px;
	align-items: center;
}
.c-card-horizontal--sidebar .c-card-horizontal__media {
	width: 84px;
	height: 84px;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-sm);
}
.c-card-horizontal--sidebar .c-card-horizontal__body {
	gap: 6px;
}
.c-card-horizontal--sidebar .c-card-horizontal__title {
	font-size: var(--fs-label-12);
	line-height: var(--lh-label-12);
	font-weight: var(--fw-regular);
	-webkit-line-clamp: 4;
}
.c-card-horizontal--sidebar .c-card-horizontal__meta {
	font-size: var(--fs-link-14);
	line-height: var(--lh-link-14);
	font-weight: var(--fw-semibold);
	color: var(--c-accent);
}

.c-card-horizontal__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.c-card-horizontal__img--placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--c-grey-light), var(--c-grey-medium));
}

.c-card-horizontal__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;          /* allow text to shrink inside flex */
	flex: 1;
}

.c-card-horizontal__meta {
	font-size: var(--fs-label-12);
	line-height: var(--lh-label-12);
	font-weight: var(--fw-regular);
	color: var(--c-fg);
}

.c-card-horizontal__title {
	margin: 0;
	font-size: var(--fs-newstitle);
	line-height: var(--lh-newstitle);
	font-weight: var(--fw-semibold);
	color: var(--c-fg);

	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* On narrow screens cards stack the image full-width above the text. */
@media (max-width: 480px) {
	.c-card-horizontal:not(.c-card-horizontal--sidebar) {
		flex-direction: column;
		gap: var(--space-2);
		align-items: stretch;
	}
	.c-card-horizontal:not(.c-card-horizontal--sidebar) .c-card-horizontal__media {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
}

/* Stacked list helper: 3 horizontal cards in a column with thin dividers,
   used in the home rows next to the hero. */
.c-card-stack {
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.c-card-stack > .c-card-horizontal + .c-card-horizontal {
	border-top: 1px solid var(--c-border);
	padding-top: 21px;
}

.c-card-stack--with-ad > .c-card-stack__ad {
	border-top: 0;
	padding-top: 0;
}

/* --- hero-half.css --- */
/*
  Component: hero half.
  Figma: "hero 1/2" (62:2061) — 821×588.

  Single feature card, large title overlaid on the lower half. Sits next to a
  c-card-stack of 3 horizontal cards on the home / categories.
*/

.c-hero-half {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 821 / 588;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--c-bg-elev);
	color: var(--c-light);
	text-decoration: none;
	isolation: isolate;
}

.c-hero-half__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.c-hero-half__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Gradient: transparent at ~53% → solid black at the bottom (matches Figma). */
.c-hero-half__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 53%,
		rgba(0, 0, 0, 1) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.c-hero-half__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 2;
}

.c-hero-half__cat {
	display: inline-flex;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--c-light);
	border-radius: var(--radius-md);
	color: var(--c-light);
	font-size: var(--fs-heading-14);
	line-height: var(--lh-heading-14);
	font-weight: var(--fw-semibold);
	letter-spacing: -0.42px;
	text-transform: uppercase;
	width: max-content;
}

.c-hero-half__title {
	margin: 0;
	font-size: var(--fs-h1);                /* 36 */
	line-height: var(--lh-h1);              /* 42 */
	font-weight: var(--fw-bold);
	letter-spacing: -1.44px;                /* Figma -4 → -1.44px at 36pt */
	color: var(--c-light);

	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.c-hero-half:hover .c-hero-half__title,
.c-hero-half:focus-visible .c-hero-half__title {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* ------------- Row pairing the hero with a card stack ------------- */
/* Use .c-hero-row to render: [hero-half  |  stack of 3 card-horizontal] */
.c-hero-row {
	display: grid;
	grid-template-columns: minmax(0, 821fr) minmax(0, 429fr);
	gap: var(--space-8);
	align-items: stretch;
}

/* When the hero-half is the only child (category has fewer than 2 posts),
   span the full row instead of sitting in the narrow 65.7% first column. */
.c-hero-row > :only-child {
	grid-column: 1 / -1;
}

@media (max-width: 1024px) {
	.c-hero-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.c-hero-half__title  { font-size: 24px; line-height: 28px; }
	.c-hero-half__body   { padding: var(--space-4); }
}

/* --- ad-slot.css --- */
/* Advert slots — Figma placeholder sizes until AdRotate is wired. */

.c-ad-slot {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.c-ad-slot__live,
.c-ad-slot__placeholder {
	width: 100%;
}

.c-ad-slot__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--c-grey-light), var(--c-grey-medium));
	color: var(--c-fg-muted);
	font-size: var(--fs-link-14);
	font-weight: var(--fw-semibold);
	text-align: center;
	padding: var(--space-4);
}

.c-ad-slot--1280-330 .c-ad-slot__placeholder {
	height: 140px;
}

.c-ad-slot--1280-293 .c-ad-slot__placeholder {
	height: 293px;
}

.c-ad-slot--sidebar {
	max-width: 235px;
}

.c-ad-slot--sidebar .c-ad-slot__placeholder {
	min-height: 477px;
}

.c-ad-slot--300-600 {
	max-width: 300px;
}

.c-ad-slot--300-600 .c-ad-slot__placeholder {
	min-height: 600px;
	aspect-ratio: 300 / 600;
}

.c-ad-slot--300-250 {
	max-width: 300px;
	margin-inline: auto;
}

.c-ad-slot--300-250 .c-ad-slot__placeholder {
	min-height: 250px;
	aspect-ratio: 300 / 250;
}

.c-ad-slot--970-250 {
	max-width: 970px;
	margin-inline: auto;
}

.c-ad-slot--970-250 .c-ad-slot__placeholder {
	height: 180px;
}

/* Reusable pattern: main content (hero rotator, hero-half+stack, podcast, …)
   narrowed to make room for a 300×600 ad column on the right. */
.c-home-row-with-ad {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--space-8);
	align-items: stretch;
}

.c-home-row-with-ad .c-ad-slot--300-600 {
	max-width: none;
}

@media (max-width: 1200px) {
	.c-home-row-with-ad {
		grid-template-columns: 1fr;
	}

	.c-home-row-with-ad .c-ad-slot--300-600 {
		max-width: 300px;
		margin-inline: auto;
	}
}

.c-single__inline-ad {
	margin-block: var(--space-8);
	display: flex;
	justify-content: center;
}

.c-single__sidebar-ads {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	margin-top: var(--space-6);
	position: sticky;
	top: 120px; /* matches .c-single__rail's sticky offset */
}

@media (max-width: 1024px) {
	.c-single__sidebar-ads {
		position: static;
	}
}

.c-biz-list__banner .c-ad-slot {
	margin-block: var(--space-4);
}

.c-tag-archive__banner {
	margin-block: var(--space-4) var(--space-6);
}

.c-home-top-banner {
	margin-block: var(--space-4) var(--space-4);
}

.c-home-row1-ad {
	display: flex;
	min-height: 0;
}

.c-home-row1-ad .c-ad-slot {
	height: 100%;
}

.c-ad-slot--grid-tall .c-ad-slot__placeholder {
	aspect-ratio: 307 / 250;
	height: 100%;
	min-height: 200px;
}

.c-ad-slot--stack-mpu .c-ad-slot__placeholder {
	aspect-ratio: 429 / 200;
	min-height: 160px;
}

.c-card-stack--with-ad {
	height: 100%;
}

.c-card-stack--with-ad .c-card-stack__ad {
	margin-top: auto;
}

.c-card-stack--with-ad .c-card-stack__ad .c-ad-slot {
	width: 100%;
}

.banner-1280-section .c-ad-slot--1280-330 .c-ad-slot__placeholder {
	height: 140px;
}

.c-single__rail-ad {
	margin-top: var(--space-2);
}

.c-single__rail-ad .c-ad-slot--sidebar,
.c-single__rail-ad .c-ad-slot--300-600 {
	max-width: 218px;
}

.c-single__bottom-ad {
	margin-top: var(--space-8);
}

.c-single__bottom-ad .c-ad-slot--1280-330 .c-ad-slot__placeholder {
	height: 140px;
}

@media (max-width: 768px) {
	.c-ad-slot--sidebar,
	.c-ad-slot--300-600 {
		max-width: none;
	}

	.c-ad-slot--sidebar .c-ad-slot__placeholder,
	.c-ad-slot--300-600 .c-ad-slot__placeholder {
		min-height: 280px;
	}
}
