/* Suprahead Newsroom — public styles. Intentionally scoped to avoid theme conflicts. */
.shn-newsroom {
	--shn-accent: #f1b700;
	--shn-dark: #111111;
	--shn-surface: #f5f3ee;
	--shn-white: #ffffff;
	--shn-muted: #696969;
	--shn-border: rgba(17, 17, 17, 0.14);
	--shn-radius: 22px;
	--shn-shadow: 0 18px 60px rgba(17, 17, 17, 0.11);
	color: var(--shn-dark);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.55;
}

.shn-newsroom:not(.shn-related) {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	overflow: clip;
	background: var(--shn-white);
}

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

.shn-newsroom a {
	color: inherit;
	text-decoration: none;
}

.shn-newsroom img {
	display: block;
	max-width: 100%;
}

.shn-newsroom h1,
.shn-newsroom h2,
.shn-newsroom h3,
.shn-newsroom p {
	margin-top: 0;
}

.shn-newsroom h1,
.shn-newsroom h2,
.shn-newsroom h3 {
	color: inherit;
	font-family: inherit;
	font-weight: 750;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.shn-shell {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

.shn-eyebrow,
.shn-card-kicker {
	margin-bottom: 12px;
	color: currentColor;
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.shn-hero {
	position: relative;
	isolation: isolate;
	padding: clamp(88px, 12vw, 170px) 0 clamp(70px, 9vw, 120px);
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--shn-accent) 46%, transparent) 0, transparent 28%),
		radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.1) 0, transparent 22%),
		var(--shn-dark);
	color: var(--shn-white);
}

.shn-hero::after {
	position: absolute;
	z-index: -1;
	right: clamp(-90px, -5vw, -30px);
	bottom: clamp(-170px, -12vw, -80px);
	width: clamp(280px, 38vw, 570px);
	aspect-ratio: 1;
	border: clamp(36px, 5vw, 80px) solid var(--shn-accent);
	border-radius: 50%;
	content: "";
	opacity: 0.9;
}

.shn-hero .shn-eyebrow {
	color: var(--shn-accent);
}

.shn-breadcrumb {
	display: flex;
	margin-bottom: 30px;
	gap: 10px;
	align-items: center;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.8rem;
	font-weight: 650;
}

.shn-breadcrumb a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.shn-breadcrumb a:hover,
.shn-breadcrumb a:focus-visible {
	border-bottom-color: var(--shn-accent);
	color: var(--shn-accent);
}

.shn-hero h1 {
	max-width: 980px;
	margin-bottom: 24px;
	color: var(--shn-white);
	font-size: clamp(3.75rem, 10vw, 9rem);
	letter-spacing: -0.065em;
}

.shn-hero__intro {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 2vw, 1.45rem);
	line-height: 1.55;
}

.shn-section {
	padding: clamp(72px, 9vw, 120px) 0;
}

.shn-section--featured {
	background: var(--shn-white);
}

.shn-section--archive {
	background: var(--shn-surface);
}

.shn-section-heading {
	margin-bottom: clamp(28px, 4vw, 48px);
}

.shn-section-heading .shn-eyebrow,
.shn-services .shn-eyebrow {
	color: color-mix(in srgb, var(--shn-dark) 60%, transparent);
}

.shn-section-heading h2,
.shn-services h2,
.shn-press h2,
.shn-studio-note h2 {
	margin-bottom: 0;
	font-size: clamp(2.2rem, 5vw, 4.75rem);
}

.shn-featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.88fr);
	gap: 24px;
}

.shn-featured-card {
	min-width: 0;
}

.shn-featured-card__link {
	display: flex;
	position: relative;
	height: 100%;
	min-height: 550px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	border-radius: var(--shn-radius);
	background: var(--shn-dark);
	box-shadow: var(--shn-shadow);
	color: var(--shn-white);
	transform: translateZ(0);
}

.shn-featured-card__media {
	position: absolute;
	inset: 0;
}

.shn-featured-card__media::after {
	position: absolute;
	inset: 25% 0 0;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.88));
	content: "";
}

.shn-featured-card__media img,
.shn-featured-card__media .shn-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.shn-featured-card__link:hover .shn-featured-card__media img,
.shn-featured-card__link:focus-visible .shn-featured-card__media img {
	transform: scale(1.035);
}

.shn-featured-card__content {
	position: relative;
	z-index: 1;
	padding: clamp(26px, 4vw, 48px);
}

.shn-featured-card__content .shn-card-kicker {
	color: var(--shn-accent);
}

.shn-featured-card__content h3 {
	margin-bottom: 20px;
	color: var(--shn-white);
	font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.shn-featured-card:not(.shn-featured-card--primary) .shn-featured-card__content h3 {
	font-size: clamp(1.65rem, 2.6vw, 2.65rem);
}

.shn-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: inherit;
	font-size: 0.84rem;
	font-weight: 600;
	opacity: 0.72;
}

.shn-toolbar {
	display: flex;
	gap: 32px;
	align-items: flex-end;
	justify-content: space-between;
}

.shn-toolbar .shn-section-heading {
	margin-bottom: 0;
}

.shn-search {
	display: flex;
	width: min(100%, 370px);
	align-items: center;
	border: 1px solid var(--shn-border);
	border-radius: 999px;
	background: var(--shn-white);
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.shn-search input {
	width: 100%;
	min-height: 52px;
	padding: 0 8px 0 22px;
	border: 0 !important;
	outline: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--shn-dark);
	font: inherit;
}

.shn-search button {
	display: grid;
	width: 44px;
	height: 44px;
	margin-right: 4px;
	flex: 0 0 44px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--shn-dark);
	color: var(--shn-white);
	cursor: pointer;
}

.shn-categories {
	display: flex;
	margin: clamp(34px, 5vw, 58px) 0 20px;
	padding-bottom: 10px;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.shn-chip {
	display: inline-flex;
	min-height: 42px;
	padding: 9px 18px;
	align-items: center;
	flex: 0 0 auto;
	border: 1px solid var(--shn-border);
	border-radius: 999px;
	background: transparent;
	font-size: 0.9rem;
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.shn-chip:hover,
.shn-chip:focus-visible,
.shn-chip.is-active {
	border-color: var(--shn-dark);
	background: var(--shn-dark);
	color: var(--shn-white);
}

.shn-result-meta {
	margin-bottom: 22px;
	color: var(--shn-muted);
	font-size: 0.86rem;
	font-weight: 650;
}

.shn-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 34px);
}

.shn-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--shn-border);
	border-radius: 18px;
	background: var(--shn-white);
	box-shadow: 0 12px 36px rgba(17, 17, 17, 0.045);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.shn-card:hover,
.shn-card:focus-within {
	box-shadow: 0 18px 46px rgba(17, 17, 17, 0.11);
	transform: translateY(-4px);
}

.shn-card__media {
	display: block;
	height: 0;
	padding-top: 66.666%;
	position: relative;
	overflow: hidden;
	background: var(--shn-dark);
}

.shn-card__media img,
.shn-card__media .shn-media-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.shn-card:hover .shn-card__media img {
	transform: scale(1.025);
}

.shn-media-placeholder {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 75% 20%, color-mix(in srgb, var(--shn-accent) 80%, transparent), transparent 32%),
		linear-gradient(135deg, #202020, var(--shn-dark));
	color: var(--shn-white);
	font-size: clamp(2.2rem, 5vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.08em;
}

.shn-card__body {
	display: flex;
	padding: 26px;
	flex: 1;
	flex-direction: column;
}

.shn-card__body .shn-card-kicker {
	color: color-mix(in srgb, var(--shn-dark) 68%, transparent);
}

.shn-card__body h3 {
	margin-bottom: 14px;
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	line-height: 1.13;
}

.shn-card__body h3 a {
	background-image: linear-gradient(var(--shn-accent), var(--shn-accent));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 3px;
	transition: background-size 220ms ease;
}

.shn-card__body h3 a:hover,
.shn-card__body h3 a:focus-visible {
	background-size: 100% 3px;
}

.shn-card__excerpt {
	margin-bottom: 22px;
	color: var(--shn-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.shn-card__body .shn-card-meta {
	margin-top: auto;
	color: var(--shn-muted);
}

.shn-pagination {
	margin-top: clamp(42px, 6vw, 72px);
}

.shn-pagination ul {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 8px;
	align-items: center;
	justify-content: center;
	list-style: none;
}

.shn-pagination a,
.shn-pagination span {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	place-items: center;
	border: 1px solid var(--shn-border);
	border-radius: 999px;
	background: var(--shn-white);
	font-size: 0.88rem;
	font-weight: 700;
}

.shn-pagination .current,
.shn-pagination a:hover,
.shn-pagination a:focus-visible {
	border-color: var(--shn-dark);
	background: var(--shn-dark);
	color: var(--shn-white);
}

.shn-empty {
	padding: clamp(40px, 8vw, 90px) 24px;
	border: 1px dashed var(--shn-border);
	border-radius: var(--shn-radius);
	text-align: center;
}

.shn-empty h3 {
	margin-bottom: 10px;
	font-size: 2rem;
}

.shn-empty p {
	margin-bottom: 26px;
	color: var(--shn-muted);
}

.shn-studio-note {
	padding: clamp(72px, 9vw, 125px) 0;
	background: var(--shn-accent);
	color: var(--shn-dark);
}

.shn-studio-note__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
	gap: clamp(36px, 8vw, 110px);
	align-items: center;
}

.shn-studio-note__content > p:not(.shn-eyebrow):not(.shn-signature) {
	max-width: 760px;
	margin: 28px 0;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	line-height: 1.65;
}

.shn-signature {
	margin: 0;
	font-weight: 780;
}

.shn-signature span {
	display: block;
	margin-top: 3px;
	font-size: 0.83rem;
	font-weight: 600;
	opacity: 0.65;
}

.shn-studio-note__media {
	display: grid;
	width: 100%;
	max-width: 410px;
	aspect-ratio: 4 / 5;
	place-items: center;
	overflow: hidden;
	border: 2px solid var(--shn-dark);
	border-radius: 999px 999px 28px 28px;
	background: var(--shn-dark);
	color: var(--shn-accent);
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 800;
	letter-spacing: -0.08em;
}

.shn-studio-note__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shn-services {
	padding: clamp(72px, 9vw, 125px) 0;
	background: var(--shn-white);
}

.shn-services h2 {
	max-width: 850px;
	margin-bottom: clamp(34px, 6vw, 65px);
}

.shn-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--shn-border);
	border-bottom: 1px solid var(--shn-border);
}

.shn-service-link {
	display: grid;
	min-height: 200px;
	padding: 28px;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto 1fr;
	border-right: 1px solid var(--shn-border);
	transition: background 180ms ease, color 180ms ease;
}

.shn-service-link:last-child {
	border-right: 0;
}

.shn-service-link > span {
	font-size: 0.76rem;
	font-weight: 750;
	opacity: 0.5;
}

.shn-service-link strong {
	align-self: end;
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	letter-spacing: -0.035em;
}

.shn-service-link b {
	font-size: 1.5rem;
	font-weight: 500;
}

.shn-service-link:hover,
.shn-service-link:focus-visible {
	background: var(--shn-dark);
	color: var(--shn-white);
}

.shn-press {
	padding: clamp(72px, 9vw, 120px) 0;
	background: var(--shn-dark);
	color: var(--shn-white);
}

.shn-press__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
	gap: clamp(40px, 8vw, 110px);
	align-items: end;
}

.shn-press .shn-eyebrow {
	color: var(--shn-accent);
}

.shn-press h2 {
	color: var(--shn-white);
}

.shn-press__grid > div:first-child > p:last-child {
	max-width: 750px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.08rem;
}

.shn-press__actions {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 18px;
}

.shn-button {
	display: inline-flex;
	min-height: 50px;
	padding: 12px 22px;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 750;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.shn-button:hover,
.shn-button:focus-visible {
	transform: translateY(-2px);
}

.shn-button--accent {
	min-width: 210px;
	border-color: var(--shn-accent);
	background: var(--shn-accent);
	color: var(--shn-dark) !important;
}

.shn-button--dark {
	border-color: var(--shn-dark);
	background: var(--shn-dark);
	color: var(--shn-white) !important;
}

.shn-text-link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.34);
	color: var(--shn-white) !important;
	font-size: 0.92rem;
}

.shn-text-link:hover,
.shn-text-link:focus-visible {
	border-bottom-color: var(--shn-accent);
	color: var(--shn-accent) !important;
}

.shn-newsroom.is-loading .shn-results {
	min-height: 420px;
	opacity: 0.45;
	pointer-events: none;
}

.shn-results {
	transition: opacity 180ms ease;
}

.shn-related {
	width: auto;
	max-width: 1180px;
	margin: clamp(60px, 8vw, 100px) auto 20px;
	padding: clamp(36px, 6vw, 70px) 0 0;
	border-top: 1px solid var(--shn-border);
}

.shn-related .shn-card-grid {
	margin-bottom: 34px;
}

.shn-related__all {
	margin: 0;
	text-align: center;
}

/* Contextual service links appended to individual articles. */
.shn-context-links {
	margin: clamp(42px, 7vw, 78px) 0 28px;
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 20px;
	background: #f5f3ee;
	color: #111111;
	font-family: inherit;
}

.shn-context-links__eyebrow {
	margin: 0 0 10px !important;
	color: #766000;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.shn-context-links h2 {
	margin: 0 0 14px !important;
	color: #111111;
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 780;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.shn-context-links > p:not(.shn-context-links__eyebrow) {
	margin: 0 0 24px;
	color: #666666;
	font-size: 0.98rem;
}

.shn-context-links__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.shn-context-links__grid a {
	display: flex;
	min-height: 56px;
	padding: 13px 18px;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #111111;
	border-radius: 999px;
	background: #111111;
	color: #ffffff !important;
	font-size: 0.9rem;
	font-weight: 750;
	text-decoration: none !important;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.shn-context-links__grid a:hover,
.shn-context-links__grid a:focus-visible {
	background: #f1b700;
	color: #111111 !important;
	transform: translateY(-2px);
}

.shn-context-links__grid b {
	font-size: 1.15rem;
	font-weight: 500;
}

.shn-newsroom a:focus-visible,
.shn-newsroom button:focus-visible,
.shn-newsroom input:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--shn-accent) 80%, white);
	outline-offset: 3px;
}

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

@media (max-width: 980px) {
	.shn-featured-grid,
	.shn-studio-note__grid,
	.shn-press__grid {
		grid-template-columns: 1fr;
	}

	.shn-featured-card__link {
		min-height: 480px;
	}

	.shn-featured-card:not(.shn-featured-card--primary) .shn-featured-card__link {
		min-height: 390px;
	}

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

	.shn-studio-note__media {
		max-width: 360px;
	}

	.shn-press__actions {
		align-items: flex-start;
	}
}

@media (max-width: 720px) {
	.shn-shell {
		width: min(100% - 30px, 1240px);
	}

	.shn-hero {
		padding-top: 78px;
	}

	.shn-hero h1 {
		font-size: clamp(3.3rem, 20vw, 5.7rem);
	}

	.shn-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.shn-search {
		width: 100%;
	}

	.shn-card-grid,
	.shn-service-grid {
		grid-template-columns: 1fr;
	}

	.shn-service-link {
		min-height: 145px;
		border-right: 0;
		border-bottom: 1px solid var(--shn-border);
	}

	.shn-service-link:last-child {
		border-bottom: 0;
	}

	.shn-pagination .prev,
	.shn-pagination .next {
		font-size: 0;
	}

	.shn-pagination .prev::after {
		content: "←";
		font-size: 1rem;
	}

	.shn-pagination .next::after {
		content: "→";
		font-size: 1rem;
	}

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

	.shn-context-links__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shn-newsroom *,
	.shn-newsroom *::before,
	.shn-newsroom *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
