.hgn-card { height: 100%; }
.hgn-card-link { display: flex; flex-direction: column; height: 100%; }
.hgn-card-media { position: relative; overflow: hidden; border-radius: var(--hgn-radius); background: var(--hgn-border); }
.hgn-card-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; transition: transform .3s ease; }
.hgn-card-img--placeholder { aspect-ratio: 3/2; background: linear-gradient(135deg, var(--hgn-border), #f0f1f4); }
.hgn-card-link:hover .hgn-card-img { transform: scale(1.03); }
.hgn-card-media .hgn-status { position: absolute; inset-block-start: 10px; inset-inline-start: 10px; }

.hgn-card-body { padding-block: 12px 4px; flex: 1; display: flex; flex-direction: column; }
.hgn-card-cat { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--hgn-navy); margin-bottom: 6px; }
.hgn-card-title { font-size: 18px; margin: 0 0 8px; }
.hgn-card-link:hover .hgn-card-title { color: var(--hgn-navy); text-decoration: underline; text-underline-offset: 3px; }
.hgn-card-meta { margin-top: auto; font-size: 12.5px; color: var(--hgn-text-soft); font-variant-numeric: tabular-nums; }

/* hero */
.hgn-card--hero .hgn-card-img { aspect-ratio: 16/11; }
.hgn-card--hero .hgn-card-title { font-size: clamp(32px, 3.8vw, 60px); line-height: 1.05; }
.hgn-card--hero .hgn-card-body { padding-top: 18px; }
.hgn-card--hero .hgn-card-standfirst { font-size: 18px; line-height: 1.5; color: var(--hgn-text-soft); margin: 0 0 14px; max-width: 62ch; }

/* large */
.hgn-card--large .hgn-card-img { aspect-ratio: 3/2; }
.hgn-card--large .hgn-card-title { font-size: clamp(20px, 2vw, 26px); }

/* medium (default) */
.hgn-card--medium .hgn-card-title { font-size: 19px; }

/* small */
.hgn-card--small .hgn-card-img { aspect-ratio: 4/3; }
.hgn-card--small .hgn-card-title { font-size: 16px; }

/* hero-side â hero's 3 latest stories: thumbnail + text row, no excerpt */
.hgn-card--hero-side .hgn-card-link { flex-direction: row; align-items: flex-start; gap: 14px; }
.hgn-card--hero-side .hgn-card-media { flex: 0 0 118px; width: 118px; border-radius: 4px; }
.hgn-card--hero-side .hgn-card-img,
.hgn-card--hero-side .hgn-card-img--placeholder { aspect-ratio: 4/3; }
.hgn-card--hero-side .hgn-card-body { padding: 0; flex: 1; min-width: 0; }
.hgn-card--hero-side .hgn-card-cat { margin-bottom: 4px; }
.hgn-card--hero-side .hgn-card-title {
	font-size: 17px; line-height: 1.28; margin: 0 0 6px;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hgn-card--hero-side .hgn-card-meta { font-size: 12px; margin-top: auto; }

/* list â no image, compact row */
.hgn-card--list .hgn-card-body { padding-block: 0; }
.hgn-card--list .hgn-card-title { font-size: 16px; margin-bottom: 4px; }
.hgn-card--list + .hgn-card--list { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hgn-border); }
