/* ============================================================
   SkyCity — News Section Styles
   news.css (static file — plain @media, never @@media)
   ============================================================ */

/* ── Tag chip shared component ──────────────────────────────── */

.sc-tag {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 50px;
	background: rgba(220,183,65, 0.15);
	color: var(--sc-plum);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.sc-tag--sm {
	padding: 2px 8px;
	font-size: 0.68rem;
}

.sc-tag--light {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

a.sc-tag {
	text-decoration: none;
	transition: background 0.2s;
}

a.sc-tag:hover,
a.sc-tag:focus-visible {
	background: rgba(220,183,65, 0.3);
}

a.sc-tag--light:hover,
a.sc-tag--light:focus-visible {
	background: rgba(255, 255, 255, 0.35);
}


/* ── Blog hero ──────────────────────────────────────────────── */

.sc-blog-hero {
	position: relative;
	min-height: 240px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--sc-plum);
	padding-top: var(--sc-nav-height);
}

.sc-blog-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
}

.sc-blog-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(68,11,34,0.25) 0%, rgba(68,11,34,0.65) 100%);
}

.sc-blog-hero__overlay--solid {
	background: linear-gradient(135deg, #1a1a1a 0%, var(--sc-plum) 100%);
}

.sc-blog-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem 2.5rem;
}

.sc-blog-hero__heading {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.15;
}

@media (min-width: 768px) {
	.sc-blog-hero {
		min-height: 320px;
	}

	.sc-blog-hero__content {
		padding: 3rem 2rem 3.5rem;
	}
}

@media (min-width: 1200px) {
	.sc-blog-hero__content {
		padding: 3rem 3rem 4rem;
	}
}


/* ── Blog intro text ────────────────────────────────────────── */

.sc-blog-intro {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.sc-blog-intro__container {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.sc-blog-intro__text {
	font-size: 1.1rem;
	color: #555;
	max-width: 900px;
	line-height: 1.7;
}

.sc-blog-intro__text > :first-child { margin-top: 0; }
.sc-blog-intro__text > :last-child  { margin-bottom: 0; }
.sc-blog-intro__text p              { margin: 0 0 1rem; }
.sc-blog-intro__text p:last-child   { margin-bottom: 0; }
.sc-blog-intro__text a              { color: var(--sc-plum); text-decoration: underline; }
.sc-blog-intro__text a:hover        { text-decoration: none; }

@media (min-width: 768px) {
	.sc-blog-intro__container {
		padding: 2.5rem 2rem;
	}
}


/* ── Tag filter ─────────────────────────────────────────────── */

.sc-tag-filter {
	background: #fff;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: var(--sc-nav-height);
	z-index: 10;
}

.sc-tag-filter__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0.75rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.sc-tag-filter__chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	border-radius: 50px;
	border: 1.5px solid #ddd;
	background: transparent;
	color: #666;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	white-space: nowrap;
}

.sc-tag-filter__chip:hover,
.sc-tag-filter__chip:focus-visible {
	border-color: var(--sc-gold);
	color: var(--sc-plum);
}

.sc-tag-filter__chip.is-active {
	border-color: var(--sc-gold);
	background: var(--sc-gold);
	color: var(--sc-text);
}

@media (min-width: 768px) {
	.sc-tag-filter__inner {
		padding: 0.75rem 2rem;
	}
}


/* ── Featured article card ──────────────────────────────────── */

.sc-blog-featured {
	background: var(--sc-plum);
	padding: 2rem 0;
}

.sc-blog-featured__container {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sc-blog-featured__card {
	display: block;
	border-radius: var(--sc-radius-card);
	overflow: hidden;
	background: #1e1e1e;
	text-decoration: none;
	transition: transform 0.25s;
}

.sc-blog-featured__card:hover,
.sc-blog-featured__card:focus-visible {
	transform: translateY(-2px);
}

.sc-blog-featured__img-wrap {
	position: relative;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: #333;
}

.sc-blog-featured__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.sc-blog-featured__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--sc-plum), #3a3a3a);
}

.sc-blog-featured__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--sc-gold);
	color: var(--sc-text);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 50px;
}

.sc-blog-featured__body {
	padding: 1.5rem;
}

.sc-blog-featured__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
}

/* 🔴 DESCENDANT OVERRIDE — the featured panel is the ONE dark surface .sc-tag lands on.
   The base .sc-tag (gold tint + plum text) is the LIGHT-surface treatment and is shared with
   _BlogCard.cshtml:79 and AttractionItem.cshtml:231, both on white. **Never fix this on the base
   rule** — it would invert those two.
   🔴 MEASURE AGAINST THE CARD, NOT THE SECTION. `.sc-blog-featured` is `var(--sc-plum)`, but the
   pills sit inside `.sc-blog-featured__card`, which is **#1e1e1e**. Measured 2026-08-24 on the real
   surface: plum text on the composited pill (rgba(220,183,65,.15) over #1e1e1e = rgb(58,53,35)) is
   **1.30:1** — the reported illegibility. Gold text on that same pill is **6.36:1**, passing AA at
   this 0.72rem size.
   📌 Gold-on-dark is the sanctioned direction (CLAUDE.md §2: gold text is legible only on
   plum/dark surfaces), so this keeps the gold pill identity rather than turning it into a neutral
   chip — white would score 12.26:1 but reads as a different component. */
.sc-blog-featured__tags .sc-tag {
	color: var(--sc-gold);
}

.sc-blog-featured__title {
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

.sc-blog-featured__summary {
	color: #aaa;
	margin: 0 0 1rem;
	line-height: 1.6;
	font-size: 0.95rem;
}

.sc-blog-featured__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

/* 🔴 SAME DEFECT AS THE TAGS ABOVE, found while measuring them. `var(--sc-text)` is #333 —
   the BODY-TEXT token, i.e. a foreground for light surfaces — and it was sitting on the #1e1e1e
   card at **1.32:1**, no more legible than the pills. Matched to `.sc-blog-featured__summary`'s
   #aaa (**7.18:1**) so the panel's three secondary foregrounds agree.
   ⚠️ Both selectors here are `.sc-blog-featured__*`, i.e. this comma group has no member outside
   the featured panel — editing it in place cannot leak (CLAUDE.md §7). */
.sc-blog-featured__date,
.sc-blog-featured__author {
	font-size: 0.82rem;
	color: #aaa;
}

.sc-blog-featured__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #666;
}

@media (min-width: 768px) {
	.sc-blog-featured {
		padding: 2.5rem 0;
	}

	.sc-blog-featured__container {
		padding: 0 2rem;
	}

	.sc-blog-featured__card {
		display: grid;
		grid-template-columns: 1fr 420px;
	}

	.sc-blog-featured__img-wrap {
		aspect-ratio: auto;
		height: 100%;
		min-height: 320px;
	}

	.sc-blog-featured__body {
		padding: 2.5rem 2rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media (min-width: 1200px) {
	.sc-blog-featured__container {
		padding: 0 3rem;
	}

	.sc-blog-featured__card {
		grid-template-columns: 1fr 500px;
	}

	.sc-blog-featured__body {
		padding: 3rem 2.5rem;
	}
}


/* ── Blog card grid ─────────────────────────────────────────── */

.sc-blog-grid {
	background: var(--sc-bg);
	padding: 2.5rem 0;
}

.sc-blog-grid__container {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sc-blog-grid__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.sc-blog-grid__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sc-blog-grid__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.sc-blog-grid__container {
		padding: 0 2rem;
	}
}

@media (min-width: 1200px) {
	.sc-blog-grid__container {
		padding: 0 3rem;
	}
}


/* ── Blog card ──────────────────────────────────────────────── */

.sc-blog-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--sc-radius-card);
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	transition: transform 0.25s, box-shadow 0.25s;
	height: 100%;
}

.sc-blog-card:hover,
.sc-blog-card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.sc-blog-card__img-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
}

.sc-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.sc-blog-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8e8e8, #d8d8d8);
}

.sc-blog-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--sc-gold);
	color: var(--sc-text);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 50px;
}

.sc-blog-card__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sc-blog-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 0.6rem;
}

.sc-blog-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 0 0 0.5rem;
	line-height: 1.35;
}

.sc-blog-card__summary {
	font-size: 0.85rem;
	color: #666;
	margin: 0 0 0.75rem;
	line-height: 1.55;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.sc-blog-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.5rem;
}

.sc-blog-card__date,
.sc-blog-card__author {
	font-size: 0.78rem;
	color: var(--sc-text);
}

.sc-blog-card__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #bbb;
	flex-shrink: 0;
}

.sc-blog-card__footer {
	padding-top: 0.75rem;
	margin-top: 0.5rem;
	border-top: 1px solid #f0f0f0;
}

.sc-blog-card__read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--sc-plum);
	letter-spacing: 0.02em;
}

.sc-blog-card__read-more .material-symbols-outlined {
	font-size: 0.9rem;
	transition: transform 0.2s;
}

.sc-blog-card:hover .sc-blog-card__read-more .material-symbols-outlined {
	transform: translateX(3px);
}


/* ── Empty / no results state ───────────────────────────────── */

.sc-blog-empty {
	padding: 4rem 0;
	text-align: center;
}

.sc-blog-empty__container {
	max-width: 480px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.sc-blog-empty__text {
	color: #777;
	font-size: 1rem;
	margin: 0;
}


/* ── Pagination ─────────────────────────────────────────────── */

.sc-pagination {
	padding: 2rem 0 3rem;
	background: var(--sc-bg);
}

.sc-pagination__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.sc-pagination__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 8px 20px;
	border-radius: var(--sc-radius-btn);
	border: 1.5px solid var(--sc-gold);
	background: transparent;
	color: var(--sc-plum);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
}

.sc-pagination__btn:hover:not(.is-disabled),
.sc-pagination__btn:focus-visible:not(.is-disabled) {
	background: var(--sc-gold);
	color: var(--sc-text);
}

.sc-pagination__btn.is-disabled {
	border-color: #ddd;
	color: #ccc;
	cursor: default;
	pointer-events: none;
}

.sc-pagination__info {
	font-size: 0.85rem;
	color: var(--sc-text);
	min-width: 100px;
	text-align: center;
}


/* ── Article page — hero ────────────────────────────────────── */

.sc-article {
	background: var(--sc-bg);
}

.sc-article-hero {
	position: relative;
	min-height: 240px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--sc-plum);
	padding-top: var(--sc-nav-height);
}

.sc-article-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.sc-article-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(68,11,34,0.2) 0%, rgba(68,11,34,0.75) 100%);
}

.sc-article-hero__overlay--solid {
	background: linear-gradient(135deg, #1a1a1a 0%, var(--sc-plum) 100%);
}

.sc-article-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem 2.5rem;
}

.sc-article-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.sc-article-hero__heading {
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.sc-article-hero__subheading {
	font-size: 1.05rem;
	color: var(--sc-gold);
	margin: 0;
	font-weight: 500;
}

@media (min-width: 768px) {
	.sc-article-hero {
		min-height: 320px;
	}

	.sc-article-hero__content {
		padding: 3rem 1.5rem 3.5rem;
	}
}

@media (min-width: 1024px) {
	.sc-article-hero__content {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── Article meta row ───────────────────────────────────────── */

.sc-article-meta {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.sc-article-meta__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0.85rem 1.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sc-article-meta__back {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--sc-plum);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.sc-article-meta__back .material-symbols-outlined {
	font-size: 1rem;
}

.sc-article-meta__back:hover {
	text-decoration: underline;
}

.sc-article-meta__sep {
	width: 1px;
	height: 14px;
	background: #ddd;
}

.sc-article-meta__date,
.sc-article-meta__author,
.sc-article-meta__read-time {
	font-size: 0.82rem;
	color: var(--sc-text);
}

.sc-article-meta__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #ccc;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.sc-article-meta__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── Share buttons ──────────────────────────────────────────── */

.sc-share {
	background: #fafafa;
	border-bottom: 1px solid #eee;
}

.sc-share__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sc-share__label {
	font-size: 0.78rem;
	font-weight: 600;
	color: #999;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-right: 0.25rem;
}

.sc-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 6px 14px;
	border-radius: 50px;
	border: 1.5px solid #e0e0e0;
	background: #fff;
	color: #555;
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	font-family: var(--sc-font);
}

.sc-share__btn:hover,
.sc-share__btn:focus-visible {
	border-color: var(--sc-gold);
	color: var(--sc-text);
	background: rgba(220,183,65,0.1);
}

.sc-share__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.sc-share__icon.material-symbols-outlined {
	font-size: 1rem;
}

.sc-share__btn-label {
	display: none;
}

@media (min-width: 480px) {
	.sc-share__btn-label {
		display: inline;
	}
}

@media (min-width: 1024px) {
	.sc-share__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── Article body typography ────────────────────────────────── */

.sc-article-body {
	padding: 2.5rem 0;
}

.sc-article-body__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #333;
}

.sc-article-body__inner h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 2rem 0 0.75rem;
}

.sc-article-body__inner h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 1.5rem 0 0.5rem;
}

.sc-article-body__inner p {
	margin: 0 0 1.25rem;
}

.sc-article-body__inner ul,
.sc-article-body__inner ol {
	list-style: revert;
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}

.sc-article-body__inner li {
	margin-bottom: 0.4rem;
}

.sc-article-body__inner a {
	color: var(--sc-plum);
	text-decoration: underline;
}

.sc-article-body__inner a:hover {
	color: var(--sc-text);
}

.sc-article-body__inner img {
	max-width: 100%;
	height: auto;
	border-radius: var(--sc-radius-card);
	margin: 1rem 0;
}

.sc-article-body__inner blockquote {
	border-left: 3px solid var(--sc-gold);
	margin: 1.5rem 0;
	padding: 0.5rem 1.25rem;
	color: #555;
	font-style: italic;
}

.sc-article-body__inner figure {
	margin: 1.5rem 0;
}

.sc-article-body__inner figcaption {
	font-size: 0.82rem;
	color: var(--sc-text);
	margin-top: 0.4rem;
}

@media (min-width: 768px) {
	.sc-article-body {
		padding: 3rem 0;
	}

	.sc-article-body__inner {
		font-size: 1.1rem;
	}
}

@media (min-width: 1024px) {
	.sc-article-body__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── Article CTAs ────────────────────────────────────────────
   Buttons at the foot of the article body, from the `articleCtas`
   Multi URL Picker. First link = filled, rest = outline; the two
   .sc-btn modifiers come from site.css — no radius is hand-rolled
   here (CLAUDE.md §2 owns the pill).
   The container mirrors .sc-article-body__inner EXACTLY (max-width,
   auto margin, 1.5rem gutter stepping to 40px at 1024) so the buttons
   line up with the body copy above them — CLAUDE.md §7's article-page
   container rule.
   ⚠️ Plain @media — news.css is a static file, never parsed by Razor. */
.sc-article-ctas {
	padding: 0 0 2.5rem;
}

.sc-article-ctas__inner {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (min-width: 1024px) {
	.sc-article-ctas__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── Article FAQ accordion — RULE SET DELETED 2026-08-24 ─────
   _ArticleFaqs.cshtml was repointed onto the shared FAQ classes, which are styled in
   site.css. This file deliberately carries NO article-FAQ rules any more: a second rule
   set for one component is how the two accordions drifted apart in the first place.
   🔴 If the news FAQ needs to differ from the sitewide FAQ, change it in site.css or say
   why here — do NOT start a parallel prefix in this file.
   ⚠️ The old prefix is deliberately not spelled out above, so that grepping this file for
   it returns a clean zero rather than matching this notice. */


/* ── Related venues ─────────────────────────────────────────── */

.sc-article-venues {
	background: #f4f4f4;
	padding: 2.5rem 0;
	border-top: 1px solid #e8e8e8;
}

.sc-article-venues__container {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sc-article-venues__heading {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 0 0 1.25rem;
}

.sc-article-venues__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.sc-article-venue-card {
	display: flex;
	gap: 1rem;
	align-items: center;
	background: #fff;
	border-radius: var(--sc-radius-card);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.2s, transform 0.2s;
}

.sc-article-venue-card:hover,
.sc-article-venue-card:focus-visible {
	box-shadow: 0 4px 18px rgba(0,0,0,0.1);
	transform: translateY(-1px);
}

.sc-article-venue-card__img-wrap {
	width: 100px;
	height: 80px;
	flex-shrink: 0;
	overflow: hidden;
	background: #eee;
}

.sc-article-venue-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sc-article-venue-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ddd, #ccc);
}

.sc-article-venue-card__body {
	padding: 0.75rem 1rem 0.75rem 0;
	flex: 1;
}

.sc-article-venue-card__name {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 0 0 0.25rem;
}

.sc-article-venue-card__summary {
	font-size: 0.8rem;
	color: var(--sc-text);
	margin: 0 0 0.35rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.sc-article-venue-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--sc-plum);
}

.sc-article-venue-card__link .material-symbols-outlined {
	font-size: 0.85rem;
}

@media (min-width: 480px) {
	.sc-article-venues__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.sc-article-venue-card__img-wrap {
		width: 120px;
		height: 90px;
	}
}

@media (min-width: 1024px) {
	.sc-article-venues__container {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* ── More news ──────────────────────────────────────────────── */

.sc-more-news {
	background: var(--sc-bg);
	padding: 3rem 0 4rem;
	border-top: 1px solid #eee;
}

.sc-more-news__container {
	max-width: var(--sc-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sc-more-news__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	gap: 1rem;
}

.sc-more-news__heading {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--sc-text);
	margin: 0;
}

.sc-more-news__all {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--sc-plum);
	text-decoration: none;
	white-space: nowrap;
}

.sc-more-news__all .material-symbols-outlined {
	font-size: 1rem;
	transition: transform 0.2s;
}

.sc-more-news__all:hover .material-symbols-outlined {
	transform: translateX(3px);
}

.sc-more-news__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.sc-more-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sc-more-news__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sc-more-news__container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* ============================================================
   IMAGE-LINK HOVER — CARD LIFT SUPPRESSION (News section, 2026-07-03)
   Matches site.css: no lift, no growing shadow. Resting shadows
   preserved. Appended last so it wins (also overrides the site.css
   .sc-blog-card, which news.css already supersedes globally).
   These cards previously relied on the now-removed lift/shadow for
   their keyboard-focus cue, so an explicit focus outline is added.
   🔴 The image half was DELETED 2026-08-07 (Adam) — both the zoom rules
   above and the `opacity: .85` fade that had merely MASKED them. Article
   and venue-card images now have no hover treatment. 📖 LESSONS §L7.
   ============================================================ */
.sc-blog-card:hover,
.sc-blog-card:focus-visible,
.sc-blog-featured__card:hover,
.sc-blog-featured__card:focus-visible,
.sc-article-venue-card:hover,
.sc-article-venue-card:focus-visible {
	transform: none;
}
.sc-blog-card:hover,
.sc-blog-card:focus-visible {
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.sc-blog-featured__card:hover,
.sc-blog-featured__card:focus-visible,
.sc-article-venue-card:hover,
.sc-article-venue-card:focus-visible {
	box-shadow: none;
}

/* Keyboard focus cue (replaces the removed lift/shadow) */
.sc-blog-card:focus-visible,
.sc-blog-featured__card:focus-visible,
.sc-article-venue-card:focus-visible {
	outline: 2px solid var(--sc-gold);
	outline-offset: 3px;
}

