/* Apex Deals — public showcase
   Mirrors the internal report's presentation aesthetic, theme-wrapped.
   No advertiser contact / PO / pacing on this surface — those stay editor-only. */

.da-showcase-shell {
	max-width: 1440px;
	margin: 24px auto 64px;
	padding: 0 1rem;
	color: #e8eaed;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.da-showcase-preview-bar {
	margin: 0 0 18px;
	padding: 12px 18px;
	background: rgba(255, 200, 72, 0.12);
	border: 1px solid rgba(255, 200, 72, 0.4);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
}

.da-showcase-page {
	padding: 36px 44px 40px;
	background: linear-gradient(180deg, rgba(28, 32, 40, 0.6), rgba(18, 21, 27, 0.6));
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

/* ───────── Cinematic hero (sits ABOVE the report card, same width) ───────── */
.da-showcase-hero {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	margin: 0;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	background: var(--da-surface-1, rgba(20, 22, 26, 0.6));
	isolation: isolate;
	aspect-ratio: 16 / 8;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.da-showcase-hero--no-image { aspect-ratio: 16 / 6; min-height: 320px; }

.da-showcase-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transform: scale(1.02);
}
.da-showcase-hero__bg--solid {
	background:
		radial-gradient(120% 80% at 80% 20%, rgba(61, 162, 255, 0.25), transparent 60%),
		linear-gradient(135deg, rgba(20, 22, 26, 0.95), rgba(14, 16, 20, 0.95));
}
.da-showcase-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(14, 16, 20, 0.0) 0%,
		rgba(14, 16, 20, 0.25) 45%,
		rgba(14, 16, 20, 0.85) 100%
	);
}

.da-showcase-hero__logo {
	position: absolute;
	bottom: 28px;
	right: 32px;
	z-index: 3;
	background: rgba(255, 255, 255, 0.96);
	padding: 14px 20px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.4);
	transform-origin: 50% 100%;
	animation: da-showcase-logo-rollup 900ms cubic-bezier(0.18, 0.85, 0.3, 1.05) 280ms both;
}
.da-showcase-hero__logo img {
	display: block;
	max-height: 48px;
	max-width: 170px;
	object-fit: contain;
}

@keyframes da-showcase-logo-rollup {
	0%   { transform: translateY(160%) rotate(-4deg); opacity: 0; }
	60%  { opacity: 1; }
	100% { transform: translateY(0) rotate(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.da-showcase-hero__logo { animation: none; }
}

.da-showcase-hero__inner {
	position: relative;
	z-index: 2;
	padding: 44px 48px 40px;
	color: #fff;
	width: 100%;
	max-width: 75%;
}

.da-showcase-hero__kicker {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--da-showcase-brand, #3da2ff);
	margin: 0 0 14px;
	font-weight: 700;
}
.da-showcase-hero__kicker a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted rgba(61, 162, 255, 0.5);
}
.da-showcase-hero__kicker a:hover { border-bottom-style: solid; }
.da-showcase-hero__kicker span { color: rgba(255, 255, 255, 0.4); padding: 0 4px; }

.da-showcase-hero__title {
	font-size: clamp(30px, 5.2vw, 56px);
	line-height: 1.05;
	margin: 0 0 14px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.da-showcase-hero__tag {
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.45;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.86);
	max-width: 60ch;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.da-showcase-hero__meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.82);
}
.da-showcase-hero__meta li { margin: 0; }
.da-showcase-hero__meta strong { color: #fff; font-weight: 600; }
.da-showcase-hero__muted { color: rgba(255, 255, 255, 0.55); }

/* ───────── Sections ───────── */
.da-showcase-section { margin: 0 0 40px; }
.da-showcase-h2 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 18px;
	border-left: 3px solid var(--da-showcase-brand, #3da2ff);
	padding-left: 12px;
	font-weight: 700;
}

/* KPI grid */
.da-showcase-kpis {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
}
.da-showcase-kpi {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 18px 20px;
}
.da-showcase-kpi span {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.da-showcase-kpi strong {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
	line-height: 1;
}

/* Chart wrapper */
.da-showcase-chart {
	background: rgba(255, 255, 255, 0.02);
	border-radius: 14px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.04);
}
.da-showcase-chart .apex-deals-chart { width: 100%; height: auto; display: block; }

/* Narrative */
.da-showcase-narrative {
	max-width: 70ch;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}
.da-showcase-narrative p { margin: 0 0 1.1em; }
.da-showcase-narrative a { color: var(--da-showcase-brand, #3da2ff); }
.da-showcase-narrative h2,
.da-showcase-narrative h3 { color: #fff; margin: 1.5em 0 0.4em; }

/* Split (donut + bars, by-pt + by-device) */
.da-showcase-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
@media (max-width: 880px) {
	.da-showcase-split { grid-template-columns: 1fr; }
}

/* Side-by-side panels (slot mix + per-creative bars) — equalised height */
.da-showcase-panel {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	min-height: 260px;
}
.da-showcase-panel .da-showcase-h2 { margin-bottom: 14px; }

/* Donut + legend — side-by-side, compact, vertically centered in the panel */
.da-showcase-panel .apex-deals-donut-wrap {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 18px;
	align-items: center;
	flex: 1;
}
.da-showcase-panel .apex-deals-donut {
	width: 180px;
	height: 180px;
	max-width: 100%;
	flex-shrink: 0;
	transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 500ms ease;
	transform: scale(0.94);
	opacity: 0;
}
.da-showcase-panel.is-revealed .apex-deals-donut { transform: scale(1); opacity: 1; }
.da-showcase-panel .apex-deals-donut-legend { margin: 0; padding: 0; list-style: none; }
.da-showcase-panel .apex-deals-donut-legend li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
}
.da-showcase-panel .apex-deals-donut-legend li:last-child { border-bottom: 0; }
.da-showcase-panel .apex-deals-donut-legend li > span:first-child {
	width: 10px; height: 10px; border-radius: 999px; flex-shrink: 0;
}
.da-showcase-panel .apex-deals-donut-legend li em {
	margin-left: auto;
	font-style: normal;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 600;
}

/* Scroll reveal */
[data-da-reveal] > .da-showcase-panel {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 500ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-da-reveal].is-revealed > .da-showcase-panel { opacity: 1; transform: translateY(0); }
[data-da-reveal] .da-showcase-panel:nth-child(2) { transition-delay: 80ms; }

/* Per-creative bars — animate width on reveal */
.da-showcase-panel .apex-deals-bars { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.da-showcase-panel .apex-deals-bars li {
	display: grid;
	grid-template-columns: minmax(110px, 0.9fr) 2.2fr auto;
	align-items: center;
	gap: 12px;
	padding: 5px 0;
	font-size: 13px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.da-showcase-panel .apex-deals-bars li:last-child { border-bottom: 0; }
.da-showcase-panel .apex-deals-bar__lbl { color: rgba(255, 255, 255, 0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.da-showcase-panel .apex-deals-bar__track {
	height: 8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
}
.da-showcase-panel .apex-deals-bar__fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.da-showcase-panel.is-revealed .apex-deals-bar__fill { transform: scaleX(1); }
.da-showcase-panel .apex-deals-bar__val {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	min-width: 36px;
	text-align: right;
}
@media (prefers-reduced-motion: reduce) {
	.da-showcase-panel .apex-deals-donut,
	.da-showcase-panel .apex-deals-bar__fill,
	[data-da-reveal] > .da-showcase-panel { transition: none; transform: none; opacity: 1; }
}

/* Tables */
.da-showcase-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.da-showcase-table th,
.da-showcase-table td {
	padding: 11px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	vertical-align: middle;
}
.da-showcase-table th {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.da-showcase-table td { color: rgba(255, 255, 255, 0.92); }
.da-showcase-table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* Sortable header — shown on tables marked [data-da-sortable].
   Indicator chevron stays inline so column width doesn't reflow as direction toggles. */
.da-showcase-table[data-da-sortable] th[data-sort-key] {
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	transition: color 160ms ease, background-color 160ms ease;
	position: relative;
}
.da-showcase-table[data-da-sortable] th[data-sort-key]::after {
	content: "";
	display: inline-block;
	width: 0; height: 0;
	margin-left: 6px;
	vertical-align: 1px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.25;
	transition: transform 160ms ease, opacity 160ms ease;
}
.da-showcase-table[data-da-sortable] th[data-sort-key]:hover {
	color: rgba(255, 255, 255, 0.9);
}
.da-showcase-table[data-da-sortable] th[data-sort-key]:hover::after { opacity: 0.6; }
.da-showcase-table[data-da-sortable] th[aria-sort="ascending"] {
	color: var(--da-accent, #3da2ff);
}
.da-showcase-table[data-da-sortable] th[aria-sort="ascending"]::after {
	transform: rotate(180deg);
	opacity: 1;
}
.da-showcase-table[data-da-sortable] th[aria-sort="descending"] {
	color: var(--da-accent, #3da2ff);
}
.da-showcase-table[data-da-sortable] th[aria-sort="descending"]::after { opacity: 1; }

/* Totals row in <tfoot> — visually distinct anchor at the bottom of the table. */
.da-showcase-table tfoot td {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 0;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.96);
}
.da-showcase-table tfoot tr.da-showcase-table__total td:first-child {
	border-top-left-radius: 8px;
}
.da-showcase-table tfoot tr.da-showcase-table__total td:last-child {
	border-top-right-radius: 8px;
}

/* Horizontal scroll wrapper for the Creative breakdown table — keeps every
   column visible on narrow viewports without breaking the page layout. */
.da-showcase-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	/* Edge-to-edge swipe area on small viewports while preserving the
	   shell's 1rem side padding at desktop sizes. */
	margin-left: -1rem;
	margin-right: -1rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.da-showcase-table-scroll > .da-showcase-table {
	/* Don't let columns crush below readable widths — prefer horizontal
	   swipe over an unreadable squeeze. */
	min-width: 560px;
}

.da-showcase-thumb img {
	display: block;
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.3);
}

/* Shrink banner thumbnails on narrow viewports so the table is more
   manageable when swiped. Placed AFTER the base rule so source order wins
   on the equal-specificity tiebreak. */
@media (max-width: 600px) {
	.da-showcase-thumb img {
		width: 60px;
		height: 60px;
	}
}

/* CTA — matches the site's .da-discussion-cta pattern (blue→purple gradient) */
.da-showcase-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(240px, 1fr);
	gap: 36px;
	align-items: center;
	border: 1px solid var(--da-border-default, rgba(255, 255, 255, 0.14));
	border-radius: var(--da-radius-lg, 24px);
	background: linear-gradient(135deg, rgba(61, 162, 255, 0.08), rgba(255, 255, 255, 0.02) 40%, rgba(139, 92, 246, 0.08));
	box-shadow: var(--da-shadow-card, 0 8px 32px rgba(0, 0, 0, 0.35)), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	padding: 40px 44px;
	margin: 0;
	overflow: hidden;
}
.da-showcase-cta::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: radial-gradient(600px circle at 0% 0%, rgba(61, 162, 255, 0.15), transparent 50%);
	pointer-events: none;
	z-index: 0;
}
.da-showcase-cta::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: radial-gradient(500px circle at 100% 100%, rgba(139, 92, 246, 0.13), transparent 55%);
	pointer-events: none;
	z-index: 0;
}
.da-showcase-cta__content { position: relative; z-index: 1; min-width: 0; }
.da-showcase-cta__title {
	color: #fff;
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	border: 0;
	padding: 0;
	text-transform: none;
}
.da-showcase-cta__copy {
	color: var(--da-text-secondary, rgba(255, 255, 255, 0.84));
	font-size: clamp(0.95rem, 1.3vw, 1.1rem);
	margin: 0;
	line-height: 1.55;
}
.da-showcase-cta__topic { color: var(--da-accent, #3da2ff); font-weight: 700; }
.da-showcase-cta__action {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}
.da-showcase-cta__btn {
	display: block;
	width: 100%;
	padding: 18px 22px;
	border: 0;
	border-radius: var(--da-radius, 16px);
	background: linear-gradient(135deg, var(--da-accent, #3da2ff), #8b5cf6);
	color: #fff !important;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.01em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(61, 162, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
.da-showcase-cta__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 36px rgba(61, 162, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	color: #fff !important;
	text-decoration: none;
}
.da-showcase-cta__btn:active { transform: translateY(0); }
.da-showcase-cta__note {
	margin: 0;
	font-size: 0.78rem;
	color: var(--da-text-muted, rgba(255, 255, 255, 0.55));
	text-align: center;
}
@media (max-width: 780px) {
	.da-showcase-cta {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 24px;
		text-align: left;
	}
	.da-showcase-cta__title { font-size: clamp(1.5rem, 6vw, 2rem); }
	.da-showcase-cta__copy { font-size: 1rem; }
	.da-showcase-cta__btn { padding: 16px 20px; font-size: 1rem; }
}

.da-showcase-foot {
	margin-top: 32px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	line-height: 1.5;
}

/* Per-creative bars (already styled by report aesthetic, override slightly for showcase) */
.da-showcase-page .apex-deals-bars { list-style: none; padding: 0; margin: 0; }
.da-showcase-page .apex-deals-bars li {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) 2.4fr auto;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 13px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.da-showcase-page .apex-deals-bars li:last-child { border-bottom: 0; }
.da-showcase-page .apex-deals-bar__lbl { color: rgba(255, 255, 255, 0.85); }
.da-showcase-page .apex-deals-bar__track { height: 8px; background: rgba(255, 255, 255, 0.08); border-radius: 999px; overflow: hidden; }
.da-showcase-page .apex-deals-bar__fill { display: block; height: 100%; border-radius: 999px; }
.da-showcase-page .apex-deals-bar__val { color: rgba(255, 255, 255, 0.7); font-weight: 600; min-width: 60px; text-align: right; }

/* ───────── Archive ───────── */
.da-showcase-archive-head {
	max-width: 1200px;
	margin: 24px auto 4px;
	padding: 0 1rem;
}
.da-showcase-archive-head__inner { max-width: 920px; }
.da-showcase-archive-head .eyebrow {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--da-showcase-brand, #3da2ff);
	font-weight: 700;
	margin: 0 0 6px;
}
.da-showcase-archive-head h1 {
	font-size: clamp(32px, 5vw, 52px);
	margin: 0 0 14px;
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}
.da-showcase-archive-head__desc {
	font-size: 18px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 22px;
	max-width: 70ch;
}

.da-showcase-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}
.da-showcase-filter {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}
.da-showcase-filter:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
	text-decoration: none;
}
.da-showcase-filter.is-active {
	background: var(--da-showcase-brand, #3da2ff);
	color: #0e1014;
	border-color: var(--da-showcase-brand, #3da2ff);
	font-weight: 600;
}

.da-showcase-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 8px 1rem 64px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.da-showcase-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.18s, border-color 0.18s;
	min-width: 0;
}
.da-showcase-card:hover {
	transform: translateY(-2px);
	border-color: rgba(61, 162, 255, 0.55);
	text-decoration: none;
}
.da-showcase-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.da-showcase-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.da-showcase-card:hover .da-showcase-card__media img {
	transform: scale(1.04);
}
.da-showcase-card__chip {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(14, 16, 20, 0.78);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: var(--da-showcase-brand, #3da2ff);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.da-showcase-card__body {
	padding: 18px 20px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.da-showcase-card__title {
	font-size: 19px;
	color: #fff;
	margin: 0 0 2px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.005em;
}
.da-showcase-card__advertiser {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}
.da-showcase-card__hero {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 0 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 14px;
}
.da-showcase-card__hero strong {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}
.da-showcase-card__hero span {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.da-showcase-card__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 14px;
	margin: auto 0 0;
}
.da-showcase-card__stats div { margin: 0; }
.da-showcase-card__stats dt {
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}
.da-showcase-card__stats dd {
	margin: 2px 0 0;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}

.da-showcase-empty {
	max-width: 600px;
	margin: 80px auto;
	padding: 0 1rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.55);
}

.da-showcase-pagination {
	max-width: 1200px;
	margin: 0 auto 48px;
	padding: 0 1rem;
	display: flex;
	gap: 6px;
	justify-content: center;
	flex-wrap: wrap;
}
.da-showcase-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 13px;
}
.da-showcase-pagination .page-numbers.current {
	background: var(--da-showcase-brand, #3da2ff);
	color: #0e1014;
	border-color: var(--da-showcase-brand, #3da2ff);
	font-weight: 600;
}

/* Archive CTA — wider container, more breathing room above + below */
.da-showcase-cta--archive {
	max-width: 1200px;
	margin: 16px auto 72px;
}

/* Narrative section gets a bit of breathing room from the hero */
.da-showcase-section--narrative { margin-top: 8px; margin-bottom: 48px; }
.da-showcase-section--narrative .da-showcase-narrative {
	font-size: 18px;
	line-height: 1.7;
}
.da-showcase-section--narrative .da-showcase-narrative > :first-child::first-letter {
	font-size: 3.4em;
	float: left;
	font-weight: 800;
	line-height: 0.92;
	margin: 6px 12px 0 0;
	color: var(--da-showcase-brand, #3da2ff);
}

/* Responsive */
@media (max-width: 880px) {
	.da-showcase-page { padding: 22px 18px 32px; }
	.da-showcase-hero {
		min-height: 380px;
		aspect-ratio: 4 / 5;
	}
	.da-showcase-hero__inner {
		padding: 28px 24px 24px;
		max-width: 100%;
	}
	.da-showcase-hero__logo {
		bottom: 18px;
		right: 18px;
		padding: 8px 12px;
	}
	.da-showcase-hero__logo img { max-height: 32px; max-width: 100px; }
	.da-showcase-section--narrative .da-showcase-narrative > :first-child::first-letter {
		font-size: 2.6em;
	}
}
