/*
Theme Name: Ezidi Times Editorial
Theme URI: https://eziditimes.com/
Author: Ezidi Times
Author URI: https://eziditimes.com/
Description: A lightweight, custom editorial WordPress theme created for Ezidi Times. It combines a modern digital-news layout with timeless typography, accessible light and dark modes, responsive images, restrained motion, clean article pages, and a structured editorial footer.
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 7.4
Version: 1.7.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ezidi-times-editorial
Tags: news, blog, custom-logo, custom-menu, featured-images, rtl-language-support, translation-ready, wide-blocks, editor-style
*/

:root {
	--et-accent: #ffd093;
	--et-accent-deep: #9b6c2f;
	--et-accent-soft: #fff4e6;
	--et-bg: #fffdf9;
	--et-surface: #ffffff;
	--et-surface-raised: #ffffff;
	--et-surface-soft: #f7f4ef;
	--et-ink: #111111;
	--et-text: #282522;
	--et-muted: #746c63;
	--et-border: #e7ded3;
	--et-border-strong: #cfc3b5;
	--et-deep: #3b2e28;
	--et-deep-raised: #493930;
	--et-deep-border: #665248;
	--et-deep-text: #fffaf4;
	--et-deep-muted: #d9cdc4;
	--et-footer-dark: var(--et-deep);
	--et-footer-muted: var(--et-deep-muted);
	--et-shadow: 0 20px 55px rgba(30, 23, 14, 0.08);
	--et-shadow-soft: 0 10px 30px rgba(30, 23, 14, 0.06);
	--et-radius-sm: 10px;
	--et-radius: 18px;
	--et-radius-lg: 28px;
	--et-shell: 1420px;
	--et-reading: 820px;
	--et-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
	--et-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--et-transition: 180ms ease;
}

html[data-theme="dark"] {
	--et-accent-deep: var(--et-accent);
	--et-bg: #0b0b0b;
	--et-surface: #111111;
	--et-surface-raised: #151515;
	--et-surface-soft: #191919;
	--et-ink: #f5f2ed;
	--et-text: #e5e1db;
	--et-muted: #aaa39a;
	--et-border: #2b2926;
	--et-border-strong: #45413c;
	--et-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
	--et-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
}

html {
	box-sizing: border-box;
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

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

[hidden] {
	display: none !important;
}

body {
	margin: 0;
	background: var(--et-bg);
	color: var(--et-text);
	font-family: var(--et-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	transition: background-color var(--et-transition), color var(--et-transition);
}

body.menu-open,
body.search-open {
	overflow: hidden;
}

img,
picture,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: middle;
}

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
	text-underline-offset: 0.18em;
	transition: color var(--et-transition), opacity var(--et-transition), background-color var(--et-transition), border-color var(--et-transition), transform var(--et-transition);
}

a:hover {
	color: var(--et-accent-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--et-accent) 72%, #000000);
	outline-offset: 3px;
}

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

button {
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--et-ink);
	font-family: var(--et-serif);
	font-weight: 600;
	line-height: 1.1;
	text-wrap: balance;
}

p {
	margin: 0 0 1.25em;
}

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

.site-main {
	min-height: 55vh;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 16px;
	background: var(--et-surface);
	color: var(--et-ink);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-sm);
}

/* Header */
.site-header {
	position: relative;
	z-index: 50;
	background: var(--et-surface);
	border-bottom: 1px solid var(--et-border);
}

.masthead-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 42px;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.04em;
	color: var(--et-muted);
	border-bottom: 1px solid var(--et-border);
}

.masthead-date {
	justify-self: start;
}

.masthead-claim {
	grid-column: 2;
	justify-self: center;
	color: var(--et-text);
}

.masthead-brand {
	padding-block: 25px 22px;
	text-align: center;
}

.brand-home {
	display: inline-flex;
	max-width: 100%;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.brand-symbol {
	position: relative;
	display: block;
	width: min(250px, 48vw);
	aspect-ratio: 479 / 265;
	margin-bottom: 3px;
}

.brand-symbol img,
.mobile-drawer-brand img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand-symbol-dark,
html[data-theme="dark"] .brand-symbol-light {
	display: none;
}

html[data-theme="dark"] .brand-symbol-dark {
	display: block;
}

.custom-brand-logo {
	display: block;
	margin-bottom: 10px;
}

.custom-brand-logo img {
	width: auto;
	max-width: min(620px, 82vw);
	max-height: 145px;
	object-fit: contain;
}

html[data-theme="dark"] .custom-brand-logo {
	padding: 10px 14px;
	background: #ffffff;
	border-radius: 14px;
}

.brand-title {
	font-family: var(--et-serif);
	font-size: clamp(38px, 5vw, 72px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--et-ink);
}

.brand-tagline {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 14px;
	font-family: var(--et-serif);
	font-size: clamp(13px, 1.25vw, 18px);
	letter-spacing: 0.025em;
	color: var(--et-text);
}

.brand-tagline::before,
.brand-tagline::after {
	content: "";
	width: clamp(32px, 6vw, 90px);
	height: 1px;
	background: var(--et-accent-deep);
}

.navigation-bar {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--et-surface);
	background: color-mix(in srgb, var(--et-surface) 94%, transparent);
	border-top: 1px solid var(--et-border);
	border-bottom: 1px solid var(--et-border);
	backdrop-filter: blur(16px);
}

.admin-bar .navigation-bar {
	top: 32px;
}

.navigation-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 58px;
}

.primary-navigation {
	min-width: 0;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 1.5vw, 25px);
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding-block: 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.primary-menu > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px;
	width: 0;
	height: 2px;
	background: var(--et-accent-deep);
	transform: translateX(-50%);
	transition: width var(--et-transition);
}

.primary-menu > li:hover > a::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after {
	width: 100%;
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -18px;
	min-width: 230px;
	padding: 10px;
	background: var(--et-surface-raised);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	box-shadow: var(--et-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--et-transition), visibility var(--et-transition), transform var(--et-transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	padding: 10px 12px;
	border-radius: 9px;
	white-space: normal;
}

.primary-menu .sub-menu a:hover {
	background: var(--et-accent-soft);
	color: #17120d;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.icon-button {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: var(--et-surface-soft);
	border: 1px solid var(--et-border);
	border-radius: 999px;
	cursor: pointer;
	transition: transform var(--et-transition), background var(--et-transition), border-color var(--et-transition);
}

.icon-button:hover {
	background: var(--et-accent-soft);
	border-color: var(--et-accent-deep);
	transform: translateY(-1px);
}

.icon-button svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
	display: none;
}

html[data-theme="dark"] .theme-icon-moon {
	display: block;
}

.mobile-menu-toggle {
	display: none;
}

.hamburger {
	display: grid;
	gap: 4px;
}

.hamburger span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: currentColor;
}

.category-rail {
	display: none;
	overflow-x: auto;
	scrollbar-width: thin;
	border-top: 1px solid var(--et-border);
}

.category-rail-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: max-content;
	padding-block: 9px;
}

.category-rail-menu a {
	display: block;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	color: var(--et-muted);
}

.category-rail-menu .current-menu-item a,
.category-rail-menu a:hover {
	background: var(--et-accent-soft);
	border-color: color-mix(in srgb, var(--et-accent-deep) 35%, var(--et-border));
	color: #17120d;
}

/* Mobile drawer */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 995;
	background: rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(3px);
}

.mobile-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 1000;
	width: min(410px, 94vw);
	padding: 18px;
	background: var(--et-bg);
	border-right: 1px solid var(--et-border);
	box-shadow: var(--et-shadow);
	overflow-y: auto;
	transform: translateX(-104%);
	transition: transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.mobile-drawer.is-open {
	transform: translateX(0);
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--et-border);
}

.mobile-drawer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--et-serif);
	font-size: 22px;
	letter-spacing: 0.04em;
}

.mobile-drawer-brand img {
	position: static;
	width: 58px;
	height: 40px;
	object-fit: contain;
}

.mobile-navigation {
	padding-block: 16px;
}

.mobile-menu > li {
	position: relative;
	margin-bottom: 7px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: 16px;
	overflow: hidden;
}

.mobile-menu a {
	display: block;
	padding: 15px 54px 15px 16px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.mobile-menu .sub-menu {
	display: none;
	padding: 0 10px 10px;
	background: var(--et-surface-soft);
	border-top: 1px solid var(--et-border);
}

.mobile-menu .submenu-open > .sub-menu {
	display: block;
}

.mobile-menu .sub-menu li + li {
	border-top: 1px solid var(--et-border);
}

.mobile-menu .sub-menu a {
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 600;
}

.submenu-toggle {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 3;
	width: 38px;
	height: 38px;
	padding: 0;
	background: var(--et-surface-soft);
	border: 1px solid var(--et-border);
	border-radius: 12px;
	cursor: pointer;
}

.submenu-toggle::before,
.submenu-toggle::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 12px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.submenu-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform var(--et-transition);
}

.submenu-open > .submenu-toggle::after {
	transform: translate(-50%, -50%) rotate(0);
}

.mobile-drawer-footer {
	padding: 16px;
	background: var(--et-accent-soft);
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 25%, var(--et-border));
	border-radius: 16px;
	color: #2f2418;
	font-family: var(--et-serif);
	font-size: 14px;
	text-align: center;
}

/* Search */
.search-overlay[hidden] {
	display: none !important;
}

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: grid;
	place-items: start center;
	padding: 10vh 24px 24px;
	background: rgba(5, 5, 5, 0.72);
	backdrop-filter: blur(10px);
}

.search-dialog {
	position: relative;
	width: min(720px, 100%);
	padding: clamp(28px, 6vw, 68px);
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow);
}

.search-close {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 25px;
}

.search-kicker,
.section-kicker {
	margin: 0 0 7px;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.search-dialog h2 {
	margin-bottom: 25px;
	font-size: clamp(34px, 6vw, 60px);
}

.search-form {
	display: flex;
	gap: 10px;
	width: 100%;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	background: var(--et-surface-soft);
	color: var(--et-text);
	border: 1px solid var(--et-border);
	border-radius: 14px;
}

.search-submit,
.button-link,
.article-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 20px;
	background: var(--et-ink);
	color: var(--et-surface);
	border: 1px solid var(--et-ink);
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.search-submit:hover,
.button-link:hover,
.article-actions button:hover {
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	color: #17120d;
}

/* Headline strip */
.news-strip {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding: 8px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: 15px;
	box-shadow: var(--et-shadow-soft);
	overflow: hidden;
}

.news-strip-label {
	flex: 0 0 auto;
	padding: 9px 15px;
	background: var(--et-accent);
	color: #17120d;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-strip-track {
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	scrollbar-width: none;
}

.news-strip-track::-webkit-scrollbar {
	display: none;
}

.news-strip-track a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	max-width: 420px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-strip-dot {
	width: 7px;
	height: 7px;
	background: var(--et-accent-deep);
	border-radius: 50%;
}

/* Homepage */
.homepage-shell {
	padding-block: 24px 84px;
}

.homepage-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(320px, 0.95fr);
	gap: 16px;
	margin-bottom: 72px;
}

.homepage-hero-side {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.story-card {
	position: relative;
	min-width: 0;
}

.story-card-media {
	position: relative;
	display: block;
	background: var(--et-surface-soft);
	border-radius: var(--et-radius);
	overflow: hidden;
}

.story-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.story-card:hover .story-image {
	transform: scale(1.025);
}

.story-image-placeholder {
	display: grid;
	place-items: center;
	min-height: 220px;
	background: linear-gradient(135deg, var(--et-accent-soft), var(--et-surface-soft));
	color: var(--et-accent-deep);
	font-family: var(--et-serif);
	font-size: 28px;
	letter-spacing: 0.12em;
}

.story-card-title {
	font-size: clamp(20px, 2.1vw, 30px);
}

.story-card-title a {
	text-decoration: none;
}

.story-eyebrow {
	display: inline-flex;
	margin-bottom: 9px;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.story-card-meta,
.article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 11px;
	color: var(--et-muted);
	font-size: 12px;
	font-weight: 620;
}

.story-card-excerpt {
	margin: 14px 0 0;
	color: var(--et-muted);
	font-size: 15px;
	line-height: 1.6;
}

.story-card-hero-lead,
.story-card-hero-side {
	min-height: 100%;
	background: #141414;
	border-radius: var(--et-radius-lg);
	overflow: hidden;
}

.story-card-hero-lead .story-card-media,
.story-card-hero-side .story-card-media {
	position: absolute;
	inset: 0;
	border-radius: 0;
}

.story-card-hero-lead .story-card-media::after,
.story-card-hero-side .story-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.06) 70%);
}

.story-card-hero-lead .story-card-content,
.story-card-hero-side .story-card-content {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(24px, 4vw, 55px);
	color: #ffffff;
}

.story-card-hero-lead {
	min-height: clamp(520px, 58vw, 690px);
}

.story-card-hero-side {
	min-height: 0;
}

.story-card-hero-lead .story-card-title {
	max-width: 900px;
	font-size: clamp(36px, 5vw, 72px);
	color: #ffffff;
}

.story-card-hero-side .story-card-title {
	font-size: clamp(25px, 2.6vw, 40px);
	color: #ffffff;
}

.story-card-hero-lead .story-eyebrow,
.story-card-hero-side .story-eyebrow {
	color: var(--et-accent);
}

.story-card-hero-lead .story-card-meta,
.story-card-hero-side .story-card-meta,
.story-card-hero-lead .story-card-excerpt {
	color: rgba(255, 255, 255, 0.82);
}

.homepage-section {
	margin-top: 78px;
}

.section-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 25px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--et-border-strong);
}

.section-heading-row h2 {
	font-size: clamp(34px, 4vw, 58px);
	letter-spacing: -0.025em;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 2px;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.text-link span,
.button-link span {
	font-size: 1.35em;
}

.latest-editorial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.story-card-latest-feature {
	grid-column: span 2;
	grid-row: span 2;
	padding: 18px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow-soft);
}

.story-card-latest-feature .story-card-media {
	aspect-ratio: 16 / 10;
}

.story-card-latest-feature .story-card-content {
	padding: 20px 4px 4px;
}

.story-card-latest-feature .story-card-title {
	font-size: clamp(30px, 3.1vw, 48px);
}

.story-card-latest-card {
	display: grid;
	grid-template-rows: auto 1fr;
	padding: 12px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.story-card-latest-card .story-card-media {
	aspect-ratio: 16 / 10;
}

.story-card-latest-card .story-card-content {
	padding: 14px 3px 4px;
}

.story-card-latest-card .story-card-title {
	font-size: clamp(20px, 1.8vw, 28px);
}

.category-story-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}

.story-card-category-lead {
	padding: 16px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
}

.story-card-category-lead .story-card-media {
	aspect-ratio: 4 / 3;
}

.story-card-category-lead .story-card-content {
	padding: 18px 4px 4px;
}

.story-card-category-lead .story-card-title {
	font-size: clamp(28px, 2.8vw, 44px);
}

.story-card-category-card {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--et-border);
}

.story-card-category-card .story-card-media {
	aspect-ratio: 4 / 3;
	margin-bottom: 14px;
}

.story-card-category-card .story-card-title {
	font-size: clamp(21px, 1.8vw, 29px);
}

.scholarly-callout {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(22px, 4vw, 54px);
	margin-top: 90px;
	padding: clamp(28px, 5vw, 60px);
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow-soft);
}

.scholarly-mark {
	position: relative;
	width: 100px;
	height: 100px;
}

.scholarly-mark img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.scholarly-copy h2 {
	font-size: clamp(30px, 3.5vw, 52px);
}

.scholarly-copy p:last-child {
	max-width: 760px;
	margin: 12px 0 0;
	color: var(--et-muted);
}

.category-directory ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	background: var(--et-border);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	overflow: hidden;
}

.category-directory li {
	background: var(--et-surface);
}

.category-directory a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 68px;
	padding: 17px 20px;
	font-weight: 750;
	text-decoration: none;
}

.category-directory a:hover {
	background: var(--et-accent-soft);
	color: #17120d;
}

/* Archives */
.archive-shell,
.page-shell,
.single-shell,
.error-shell {
	padding-block: clamp(42px, 7vw, 100px);
}

.archive-header,
.page-header {
	max-width: 980px;
	margin-bottom: 42px;
}

.archive-header h1,
.page-header h1 {
	font-size: clamp(46px, 7vw, 88px);
	letter-spacing: -0.035em;
}

.archive-description,
.article-deck {
	max-width: 860px;
	margin-top: 18px;
	color: var(--et-muted);
	font-family: var(--et-serif);
	font-size: clamp(19px, 2vw, 27px);
	line-height: 1.45;
}

.archive-list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--et-border-strong);
}

.archive-story {
	display: grid;
	grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.6fr);
	gap: clamp(24px, 5vw, 64px);
	align-items: center;
	padding-block: 30px;
	border-bottom: 1px solid var(--et-border);
}

.archive-story-media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--et-surface-soft);
	border-radius: var(--et-radius);
	overflow: hidden;
}

.archive-story-title {
	font-size: clamp(28px, 3.2vw, 48px);
}

.archive-story-title a {
	text-decoration: none;
}

.archive-story-content > p {
	margin: 15px 0 0;
	color: var(--et-muted);
}

.navigation.pagination {
	margin-top: 44px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: 999px;
	font-weight: 750;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	color: #17120d;
}

/* Single article */
.single-layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 54px;
}

.has-article-sidebar .single-layout-grid {
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
}

.single-article {
	min-width: 0;
}

.article-header,
.article-body,
.article-actions {
	width: min(var(--et-reading), 100%);
	margin-inline: auto;
}

.article-title {
	font-size: clamp(48px, 7vw, 92px);
	letter-spacing: -0.045em;
}

.article-meta {
	margin-top: 22px;
	font-size: 13px;
}

.article-meta a {
	font-weight: 800;
	text-decoration: none;
}

.meta-separator {
	width: 20px;
	height: 1px;
	background: var(--et-border-strong);
}

.article-featured-media,
.page-featured-media {
	margin-block: 42px 48px;
}

.article-featured-media img,
.page-featured-media img {
	display: block;
	width: 100%;
	max-height: 760px;
	object-fit: cover;
	border-radius: var(--et-radius-lg);
}

.article-featured-media figcaption {
	padding: 10px 4px 0;
	color: var(--et-muted);
	font-size: 12px;
}

.entry-content {
	font-family: var(--et-serif);
	font-size: clamp(18px, 1.45vw, 22px);
	line-height: 1.78;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2em;
	margin-bottom: 0.65em;
}

.entry-content h2 {
	font-size: clamp(32px, 4vw, 50px);
}

.entry-content h3 {
	font-size: clamp(26px, 3vw, 38px);
}

.entry-content a {
	text-decoration-thickness: 1px;
}

.entry-content blockquote {
	margin: 2.2em 0;
	padding: 1.4em 1.5em;
	background: var(--et-accent-soft);
	border-left: 4px solid var(--et-accent-deep);
	border-radius: 0 var(--et-radius) var(--et-radius) 0;
	color: #2b2116;
	font-size: 1.15em;
	font-style: italic;
}

html[data-theme="dark"] .entry-content blockquote {
	color: #f7e9d5;
}

.entry-content figure,
.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-embed {
	margin-block: 2em;
}

.entry-content img {
	border-radius: var(--et-radius-sm);
}

.entry-content figcaption {
	margin-top: 8px;
	color: var(--et-muted);
	font-family: var(--et-sans);
	font-size: 12px;
	text-align: center;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--et-sans);
	font-size: 15px;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--et-border);
	text-align: left;
}

.alignwide {
	width: min(1160px, calc(100vw - 48px));
	max-width: none !important;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none !important;
	margin-left: 50%;
	transform: translateX(-50%);
}

.article-actions {
	display: flex;
	gap: 10px;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid var(--et-border);
}

.article-actions button {
	min-height: 42px;
	padding-inline: 17px;
	background: var(--et-surface);
	color: var(--et-text);
	border-color: var(--et-border-strong);
}

.article-sidebar {
	position: sticky;
	top: 92px;
	padding: 22px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.widget + .widget {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid var(--et-border);
}

.widget-title {
	margin-bottom: 14px;
	font-size: 25px;
}

.widget ul {
	list-style: none;
	padding: 0;
}

.widget li + li {
	margin-top: 10px;
}

.related-articles {
	margin-top: 88px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.story-card-related .story-card-media {
	aspect-ratio: 4 / 3;
}

.story-card-related .story-card-content {
	padding-top: 15px;
}

.story-card-related .story-card-title {
	font-size: clamp(22px, 2vw, 31px);
}

.post-navigation {
	margin-top: 70px;
	padding-top: 28px;
	border-top: 1px solid var(--et-border-strong);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	justify-content: stretch;
	gap: 18px;
}

.post-navigation a {
	display: flex;
	min-height: 120px;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	text-decoration: none;
}

.post-navigation .nav-next a {
	text-align: right;
}

.nav-direction {
	margin-bottom: 7px;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nav-title {
	font-family: var(--et-serif);
	font-size: 22px;
	font-weight: 650;
	line-height: 1.25;
}

/* Pages and comments */
.page-article {
	width: min(1100px, 100%);
	margin-inline: auto;
}

.page-content {
	width: min(var(--et-reading), 100%);
	margin-inline: auto;
}

.comments-area {
	width: min(var(--et-reading), 100%);
	margin: 75px auto 0;
	padding-top: 35px;
	border-top: 1px solid var(--et-border-strong);
}

.comments-title,
.comment-reply-title {
	margin-bottom: 24px;
	font-size: 34px;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	padding-left: 34px;
}

.comment-body {
	margin-bottom: 18px;
	padding: 22px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.comment-meta {
	margin-bottom: 12px;
	font-size: 13px;
}

.comment-author img {
	margin-right: 10px;
	border-radius: 50%;
}

.comment-form p {
	margin-bottom: 14px;
}

.comment-form label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 750;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	padding: 13px 15px;
	background: var(--et-surface);
	color: var(--et-text);
	border: 1px solid var(--et-border);
	border-radius: 12px;
}

.comment-form .submit {
	padding: 13px 20px;
	background: var(--et-ink);
	color: var(--et-surface);
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.no-results,
.error-shell {
	text-align: center;
}

.prose-panel {
	padding: clamp(30px, 7vw, 80px);
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
}

.error-code {
	color: var(--et-accent);
	font-family: var(--et-serif);
	font-size: clamp(100px, 20vw, 260px);
	font-weight: 700;
	line-height: 0.8;
}

.error-shell h1 {
	margin: 24px auto 16px;
	font-size: clamp(42px, 6vw, 72px);
}

.error-shell .search-form {
	max-width: 680px;
	margin: 28px auto;
}

/* Footer */
.site-footer {
	margin-top: 30px;
}

.footer-editorial {
	padding-block: 64px;
	background: var(--et-footer-dark);
	color: #ffffff;
}

.footer-editorial-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 0.8fr;
	gap: clamp(34px, 5vw, 80px);
}

.footer-heading {
	margin-bottom: 25px;
	color: #ffffff;
	font-family: var(--et-sans);
	font-size: 15px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-story-list {
	display: grid;
	gap: 18px;
}

.footer-story {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.footer-story-image {
	display: block;
	aspect-ratio: 16 / 11;
	background: #242424;
	border-radius: 8px;
	overflow: hidden;
}

.footer-story h3 {
	color: #ffffff;
	font-family: var(--et-sans);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
}

.footer-story h3 a {
	text-decoration: none;
}

.footer-story time {
	display: block;
	margin-top: 6px;
	color: var(--et-footer-muted);
	font-size: 11px;
}

.footer-category-list {
	list-style: none;
	padding: 0;
}

.footer-category-list li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-category-list a {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-block: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

.category-count {
	color: var(--et-accent);
}

.footer-identity {
	background: var(--et-accent);
	color: #17120d;
	border-radius: 0 0 34px 34px;
}

.footer-identity-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 0.8fr);
	gap: clamp(30px, 5vw, 80px);
	padding-block: 55px 45px;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #17120d;
	font-family: var(--et-serif);
	font-size: 30px;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-brand img {
	width: 90px;
	height: 55px;
	object-fit: contain;
}

.footer-brand-column p {
	max-width: 460px;
	margin: 18px 0 0;
	font-size: 14px;
	line-height: 1.65;
}

.footer-small-heading {
	margin-bottom: 17px;
	color: #17120d;
	font-family: var(--et-sans);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer-heading-with-mark {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-heading-with-mark img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.footer-links,
.social-links,
.footer-legal-links {
	list-style: none;
	padding: 0;
}

.footer-links li + li,
.social-links li + li {
	margin-top: 9px;
}

.footer-links a,
.social-links a {
	color: #17120d;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.social-icon {
	display: inline-grid;
	place-items: center;
	width: 27px;
	height: 27px;
	background: rgba(255, 255, 255, 0.46);
	border: 1px solid rgba(23, 18, 13, 0.16);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 900;
}

.footer-empty-note {
	font-size: 12px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	text-align: center;
	padding-block: 24px 28px;
	border-top: 1px solid rgba(23, 18, 13, 0.18);
	font-size: 12px;
}

.footer-bottom p {
	width: 100%;
	margin: 0;
	text-align: center;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-legal-links a {
	color: #17120d;
	font-weight: 700;
	text-decoration: none;
}

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 80;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--et-ink);
	color: var(--et-surface);
	border: 1px solid var(--et-border-strong);
	border-radius: 50%;
	box-shadow: var(--et-shadow-soft);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	cursor: pointer;
	transition: opacity var(--et-transition), visibility var(--et-transition), transform var(--et-transition);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* WordPress utilities */
.alignleft {
	float: left;
	margin: 0.35em 1.75em 1.25em 0;
}

.alignright {
	float: right;
	margin: 0.35em 0 1.25em 1.75em;
}

.aligncenter {
	display: block;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}

.entry-content::after,
.comment-content::after {
	display: table;
	clear: both;
	content: "";
}

.wp-caption,
.gallery-caption {
	max-width: 100%;
}

.wp-caption-text {
	margin-top: 8px;
	color: var(--et-muted);
	font-size: 12px;
	text-align: center;
}

.sticky {
	position: relative;
}

.bypostauthor {
	position: relative;
}

.page-links {
	display: flex;
	gap: 8px;
	margin-top: 30px;
}

/* Responsive */
@media (max-width: 1180px) {
	.category-rail {
		display: block;
	}

	.primary-navigation {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-grid;
	}

	.navigation-inner {
		grid-template-columns: auto 1fr auto;
	}

	.header-actions {
		grid-column: 3;
	}

	.homepage-hero {
		grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.85fr);
	}

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

	.category-story-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.story-card-category-lead {
		grid-column: span 3;
		display: grid;
		grid-template-columns: 1.3fr 1fr;
		gap: 20px;
	}

	.story-card-category-lead .story-card-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.footer-identity-grid {
		grid-template-columns: 1.4fr repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.admin-bar .navigation-bar {
		top: 46px;
	}

	.masthead-top {
		grid-template-columns: 1fr;
		justify-items: center;
		padding-block: 8px;
		text-align: center;
	}

	.masthead-date,
	.masthead-claim {
		grid-column: 1;
		justify-self: center;
	}

	.masthead-date {
		display: none;
	}

	.homepage-hero {
		grid-template-columns: 1fr;
	}

	.homepage-hero-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.story-card-hero-side {
		min-height: 360px;
	}

	.category-directory ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.scholarly-callout {
		grid-template-columns: 90px 1fr;
	}

	.scholarly-callout .button-link {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.footer-editorial-grid,
	.footer-identity-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.has-article-sidebar .single-layout-grid {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
	}
}

@media (max-width: 680px) {
	.alignleft,
	.alignright {
		float: none;
		margin-right: auto;
		margin-left: auto;
	}

	.shell {
		width: min(100% - 28px, var(--et-shell));
	}

	.masthead-brand {
		padding-block: 19px 17px;
	}

	.brand-symbol {
		width: 180px;
	}

	.brand-title {
		font-size: clamp(34px, 11vw, 50px);
		letter-spacing: 0.12em;
	}

	.brand-tagline {
		font-size: 12px;
		line-height: 1.3;
	}

	.brand-tagline::before,
	.brand-tagline::after {
		width: 22px;
	}

	.navigation-inner {
		min-height: 54px;
	}

	.category-rail {
		width: 100%;
		padding-inline: 14px;
	}

	.category-rail-menu {
		justify-content: flex-start;
	}

	.news-strip {
		width: calc(100% - 28px);
		margin-top: 14px;
	}

	.news-strip-label {
		padding: 8px 11px;
	}

	.homepage-shell {
		padding-top: 15px;
	}

	.homepage-hero {
		gap: 12px;
		margin-bottom: 56px;
	}

	.homepage-hero-side {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.story-card-hero-lead {
		min-height: 480px;
	}

	.story-card-hero-side {
		min-height: 320px;
	}

	.story-card-hero-lead .story-card-content,
	.story-card-hero-side .story-card-content {
		padding: 24px;
	}

	.story-card-hero-lead .story-card-title {
		font-size: clamp(34px, 10vw, 50px);
	}

	.homepage-section {
		margin-top: 60px;
	}

	.section-heading-row {
		align-items: flex-start;
	}

	.section-heading-row h2 {
		font-size: 38px;
	}

	.latest-editorial-grid,
	.category-story-grid,
	.related-grid {
		grid-template-columns: 1fr;
	}

	.story-card-latest-feature,
	.story-card-category-lead {
		grid-column: auto;
		grid-row: auto;
		display: block;
	}

	.story-card-latest-card {
		display: grid;
		grid-template-columns: 132px minmax(0, 1fr);
		gap: 14px;
		align-items: center;
	}

	.story-card-latest-card .story-card-content {
		padding: 0;
	}

	.story-card-latest-card .story-card-title {
		font-size: 21px;
	}

	.story-card-latest-card .story-eyebrow,
	.story-card-latest-card .story-card-meta {
		font-size: 10px;
	}

	.story-card-category-card {
		display: grid;
		grid-template-columns: 128px minmax(0, 1fr);
		gap: 14px;
		align-items: center;
		padding-bottom: 18px;
	}

	.story-card-category-card .story-card-media {
		margin-bottom: 0;
	}

	.scholarly-callout {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.scholarly-mark {
		margin-inline: auto;
	}

	.scholarly-callout .button-link {
		justify-self: center;
	}

	.category-directory ul {
		grid-template-columns: 1fr;
	}

	.archive-story {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 16px;
		align-items: start;
		padding-block: 18px;
	}

	.archive-story-title {
		font-size: 24px;
	}

	.archive-story-content > p,
	.archive-story .story-eyebrow {
		display: none;
	}

	.article-title {
		font-size: clamp(42px, 13vw, 64px);
	}

	.article-featured-media,
	.page-featured-media {
		margin-block: 30px 34px;
	}

	.entry-content {
		font-size: 18px;
	}

	.alignwide {
		width: calc(100vw - 28px);
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.footer-editorial-grid,
	.footer-identity-grid {
		grid-template-columns: 1fr;
	}

	.footer-editorial {
		padding-block: 48px;
	}

	.footer-identity-grid {
		padding-block: 42px 35px;
	}

	.footer-bottom {
		align-items: center;
		flex-direction: column;
		text-align: center;
	}

	.search-form {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.masthead-claim {
		font-size: 11px;
	}

	.brand-symbol {
		width: 155px;
	}

	.brand-title {
		font-size: 37px;
	}

	.brand-tagline::before,
	.brand-tagline::after {
		display: none;
	}

	.story-card-latest-card,
	.story-card-category-card,
	.archive-story {
		grid-template-columns: 108px minmax(0, 1fr);
	}

	.story-card-latest-card .story-card-meta,
	.story-card-category-card .story-card-meta {
		display: none;
	}

	.footer-story {
		grid-template-columns: 86px minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.article-actions,
	.post-navigation,
	.related-articles,
	.comments-area,
	.back-to-top {
		display: none !important;
	}

	body {
		background: #ffffff;
		color: #000000;
	}

	.single-shell {
		width: 100%;
		padding: 0;
	}
}

/* Page-builder compatibility */
.page-builder-page,
.page-builder-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.page-builder-content {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.page-builder-content > * {
	max-width: none;
}

/* WooCommerce baseline styling */
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	color: var(--et-muted);
	font-size: 13px;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 16px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.woocommerce ul.products li.product a img {
	border-radius: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
	font-family: var(--et-serif);
	color: var(--et-ink);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--et-ink);
	color: var(--et-surface);
	border-radius: 999px;
	font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--et-accent);
	color: #17120d;
}

.woocommerce span.onsale {
	background: var(--et-accent);
	color: #17120d;
}

@media (max-width: 900px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}


/* --------------------------------------------------------------------------
 * Ezidi Times Editorial 1.1 — refined permanent editorial system
 * -------------------------------------------------------------------------- */

/* The masthead claim appears once, beneath the Ezidi Times name. */
.masthead-top {
	display: flex;
	justify-content: center;
	min-height: 44px;
	padding-inline: 18px;
	background: var(--et-surface-soft);
}

.masthead-date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.045em;
	color: var(--et-text);
}

.masthead-date-dot {
	width: 7px;
	height: 7px;
	background: var(--et-accent-deep);
	border-radius: 50%;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--et-accent) 30%, transparent);
}

.search-description {
	margin: -12px 0 24px;
	color: var(--et-muted);
	font-size: 15px;
	line-height: 1.55;
}

/* One consistent card system for all permanent homepage sections. */
.category-story-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.story-card-section-card {
	display: flex;
	height: 100%;
	min-width: 0;
	flex-direction: column;
	padding: 12px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
}

.story-card-section-card .story-card-media {
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	border-radius: 13px;
}

.story-card-section-card .story-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px 4px 4px;
}

.story-card-section-card .story-card-title {
	display: -webkit-box;
	min-height: 3.6em;
	overflow: hidden;
	font-size: clamp(20px, 1.65vw, 27px);
	line-height: 1.17;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.story-card-section-card .story-card-meta {
	margin-top: auto;
	padding-top: 14px;
}

.homepage-section {
	margin-top: 70px;
}

/* Upcoming Ezidi Holidays uses the same restrained ticker language as Latest. */
.holiday-strip {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: -2px 0 24px;
	padding: 8px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: 15px;
	overflow: hidden;
}

.holiday-strip-label {
	flex: 0 0 auto;
	padding: 9px 14px;
	background: var(--et-accent);
	color: #17120d;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.holiday-strip-track {
	display: flex;
	align-items: center;
	gap: 25px;
	overflow-x: auto;
	scrollbar-width: none;
}

.holiday-strip-track::-webkit-scrollbar {
	display: none;
}

.holiday-strip-track a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	max-width: 430px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.holiday-strip-symbol {
	color: var(--et-accent-deep);
}

/* The archive promotion keeps the supplied Ezidi Times artwork intact. */
.scholarly-ad {
	margin-top: 82px;
	background: #fffdf9;
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow-soft);
	overflow: hidden;
}

.scholarly-ad-link {
	display: block;
	text-decoration: none;
}

.scholarly-ad img {
	display: block;
	width: 100%;
	height: auto;
}

html[data-theme="dark"] .scholarly-ad {
	background: #fffdf9;
	border-color: #4a443d;
}

/* Cleaner professional article rhythm: headline, image, text, tools. */
.article-header {
	width: min(980px, 100%);
}

.article-header .article-title {
	max-width: 960px;
}

.article-meta time {
	padding: 4px 10px;
	background: var(--et-accent-soft);
	color: var(--et-ink);
	border-radius: 999px;
	font-weight: 800;
}

.article-featured-media {
	width: min(1120px, 100%);
	margin: 42px auto 52px;
	text-align: center;
}

.article-featured-media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 780px;
	margin-inline: auto;
	object-fit: contain;
	border-radius: var(--et-radius-lg);
}

.article-featured-media figcaption {
	display: none;
}

.article-tools {
	width: min(var(--et-reading), 100%);
	margin: 42px auto 0;
	padding-top: 26px;
	border-top: 1px solid var(--et-border);
}

.article-tools-label {
	margin: 0 0 13px;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.article-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.article-actions a,
.article-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 15px;
	background: var(--et-surface);
	color: var(--et-text);
	border: 1px solid var(--et-border-strong);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.article-actions a:hover,
.article-actions button:hover {
	background: var(--et-accent);
	color: #17120d;
	border-color: var(--et-accent-deep);
}

.comments-area {
	margin-top: 68px;
}

.related-articles {
	margin-top: 76px;
}

/* Never expose legacy language taxonomy as a visual chip. */
.archive-story .story-eyebrow {
	display: none;
}

@media (max-width: 1080px) {
	.category-story-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.masthead-top {
		grid-template-columns: none;
		padding-block: 0;
	}

	.masthead-date {
		display: inline-flex;
	}
}

@media (max-width: 680px) {
	.category-story-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.story-card-section-card {
		display: grid;
		grid-template-columns: 124px minmax(0, 1fr);
		gap: 14px;
		align-items: center;
		padding: 10px;
	}

	.story-card-section-card .story-card-media {
		aspect-ratio: 1 / 1;
	}

	.story-card-section-card .story-card-content {
		padding: 3px 2px;
	}

	.story-card-section-card .story-card-title {
		min-height: auto;
		font-size: 20px;
		-webkit-line-clamp: 3;
	}

	.story-card-section-card .story-card-meta {
		margin-top: 9px;
		padding-top: 0;
	}

	.holiday-strip {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.holiday-strip-label {
		align-self: flex-start;
	}

	.scholarly-ad {
		margin-top: 62px;
		border-radius: 16px;
	}

	.article-title {
		font-size: clamp(40px, 12vw, 58px);
	}

	.article-featured-media {
		margin-block: 30px 38px;
	}

	.article-featured-media img {
		border-radius: 16px;
	}

	.article-actions a,
	.article-actions button {
		min-height: 38px;
		padding-inline: 13px;
		font-size: 12px;
	}
}

/* --------------------------------------------------------------------------
 * Ezidi Times Editorial 1.2 — newsroom layouts, motion and article authority
 * -------------------------------------------------------------------------- */

/* The full permanent navigation remains visible at desktop widths. */
.primary-menu {
	justify-content: center;
	gap: clamp(9px, 1.05vw, 18px);
}

.primary-menu a {
	font-size: 13px;
	letter-spacing: -0.01em;
}

.primary-menu > li > a {
	padding-inline: 1px;
}

@media (min-width: 1181px) and (max-width: 1320px) {
	.primary-menu {
		gap: 9px;
	}

	.primary-menu a {
		font-size: 12px;
	}

	.header-actions {
		gap: 5px;
	}

	.icon-button {
		width: 37px;
		height: 37px;
	}
}

/* Seamless, readable tickers. */
.editorial-ticker {
	min-width: 0;
}

.editorial-ticker-viewport {
	min-width: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

.editorial-ticker-motion {
	display: flex;
	width: max-content;
	animation: eziditimes-ticker-scroll var(--ticker-duration, 44s) linear infinite;
	will-change: transform;
}

.editorial-ticker-group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 30px;
	padding-right: 30px;
}

.editorial-ticker-group a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	max-width: 460px;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.editorial-ticker-group a > span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.editorial-ticker-symbol {
	color: var(--et-accent-deep);
	font-size: 0.9em;
}

.editorial-ticker:hover .editorial-ticker-motion,
.editorial-ticker:focus-within .editorial-ticker-motion {
	animation-play-state: paused;
}

@keyframes eziditimes-ticker-scroll {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

/* Featured-news package and native carousel. */
.lead-package {
	margin-bottom: 82px;
}

.lead-package-heading {
	margin-bottom: 20px;
}

.lead-package-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(290px, 0.72fr);
	gap: 18px;
	align-items: stretch;
}

.lead-package-grid-wide {
	grid-template-columns: minmax(0, 1fr);
}

.lead-slider {
	position: relative;
	min-width: 0;
	background: #111111;
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow-soft);
	overflow: hidden;
	isolation: isolate;
}

.lead-slider-stage {
	position: relative;
	min-height: clamp(520px, 53vw, 720px);
	aspect-ratio: 16 / 10;
}

.lead-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(1.018);
	transition: opacity 520ms ease, visibility 520ms ease, transform 760ms cubic-bezier(.2,.75,.2,1);
}

.lead-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: scale(1);
}

.lead-slide-link,
.lead-slide-media,
.lead-slide-shade {
	position: absolute;
	inset: 0;
	display: block;
}

.lead-slide-link {
	color: #ffffff;
	text-decoration: none;
}

.lead-slide-media img,
.lead-slide-media .story-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lead-slide-shade {
	background:
		linear-gradient(90deg, rgba(8,8,8,.78) 0%, rgba(8,8,8,.48) 46%, rgba(8,8,8,.08) 78%),
		linear-gradient(0deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,0) 62%);
}

.lead-slide-content {
	position: absolute;
	z-index: 2;
	left: clamp(25px, 4.5vw, 68px);
	right: clamp(25px, 12vw, 180px);
	bottom: clamp(60px, 7vw, 96px);
	display: block;
	max-width: 980px;
}

.lead-slide-position {
	display: block;
	margin-bottom: 13px;
	color: var(--et-accent);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.lead-slide-title {
	display: block;
	font-family: var(--et-serif);
	font-size: clamp(40px, 5vw, 76px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.lead-slide-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
	color: rgba(255,255,255,.86);
	font-size: 12px;
	font-weight: 750;
}

.lead-slide-excerpt {
	display: block;
	max-width: 760px;
	margin-top: 15px;
	color: rgba(255,255,255,.82);
	font-size: 15px;
	line-height: 1.6;
}

.lead-slider-controls {
	position: absolute;
	z-index: 4;
	left: clamp(25px, 4.5vw, 68px);
	right: clamp(25px, 4.5vw, 68px);
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.lead-slider-button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: rgba(255,255,255,.12);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	cursor: pointer;
}

.lead-slider-button:hover {
	background: var(--et-accent);
	color: #17120d;
	border-color: var(--et-accent);
}

.lead-slider-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-inline: auto;
}

.lead-slider-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: rgba(255,255,255,.45);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: width var(--et-transition), background var(--et-transition);
}

.lead-slider-dot.is-active {
	width: 28px;
	background: var(--et-accent);
}

.lead-side {
	display: grid;
	grid-template-rows: auto repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.lead-side-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.lead-side-heading::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--et-border-strong);
}

.story-card-lead-side {
	position: relative;
	min-height: 0;
	background: #111111;
	border-radius: var(--et-radius);
	overflow: hidden;
}

.story-card-lead-side .story-card-media {
	position: absolute;
	inset: 0;
	border-radius: 0;
}

.story-card-lead-side .story-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5,5,5,.9), rgba(5,5,5,.08) 72%);
}

.story-card-lead-side .story-card-content {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	color: #ffffff;
}

.story-card-lead-side .story-card-title {
	font-size: clamp(24px, 2.15vw, 35px);
	color: #ffffff;
}

.story-card-lead-side .story-card-meta {
	color: rgba(255,255,255,.75);
}

/* Distinct section systems, all using one consistent editorial vocabulary. */
.section-story-layout {
	display: grid;
	gap: 20px;
	align-items: stretch;
}

.section-story-layout > .story-card {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	padding: 13px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	box-shadow: 0 1px 0 rgba(17,17,17,.025);
	overflow: hidden;
}

.section-story-layout .story-card-media {
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	border-radius: 13px;
}

.section-story-layout .story-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px 4px 4px;
}

.section-story-layout .story-card-title {
	display: -webkit-box;
	overflow: hidden;
	font-size: clamp(20px, 1.55vw, 27px);
	line-height: 1.14;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.section-story-layout .story-card-meta {
	margin-top: auto;
	padding-top: 13px;
}

.section-story-layout .story-card-excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.section-story-layout > .story-card:first-child .story-card-title {
	font-size: clamp(28px, 2.75vw, 45px);
	-webkit-line-clamp: 4;
}

/* Legal: one authoritative report with a four-story case file grid. */
.layout-legal {
	grid-template-columns: 1.42fr repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(230px, auto));
}

.layout-legal > .story-card:first-child {
	grid-row: 1 / 3;
	padding: 16px;
}

.layout-legal > .story-card:first-child .story-card-media {
	aspect-ratio: 4 / 3;
}

/* Sport, Arts & Culture: visual mosaic with a closing full-width dispatch. */
.layout-sport_arts_culture {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(3, minmax(210px, auto));
}

.layout-sport_arts_culture > .story-card:first-child {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.layout-sport_arts_culture > .story-card:nth-child(2) {
	grid-column: 3 / 5;
}

.layout-sport_arts_culture > .story-card:nth-child(5) {
	grid-column: 1 / 5;
	display: grid;
	grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
	gap: 18px;
	align-items: center;
}

.layout-sport_arts_culture > .story-card:nth-child(5) .story-card-media {
	height: 100%;
	aspect-ratio: 16 / 8;
}

/* Events: two visual leads followed by a compact three-story agenda. */
.layout-events {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.layout-events > .story-card:nth-child(-n+2) {
	grid-column: span 6;
}

.layout-events > .story-card:nth-child(n+3) {
	grid-column: span 4;
	background: var(--et-surface-soft);
}

.layout-events > .story-card:nth-child(-n+2) .story-card-media {
	aspect-ratio: 16 / 9;
}

/* Opinion: one principal argument with four supporting columns. */
.layout-opinion {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(220px, auto));
}

.layout-opinion > .story-card:first-child {
	grid-column: span 6;
	grid-row: 1 / 3;
	border-top: 4px solid var(--et-accent-deep);
}

.layout-opinion > .story-card:nth-child(n+2) {
	grid-column: span 3;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-media {
	aspect-ratio: 4 / 3;
}

/* Interviews: a precise profile row. */
.layout-interview {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.layout-interview > .story-card {
	padding: 10px;
}

.layout-interview .story-card-media {
	aspect-ratio: 4 / 3;
}

.layout-interview .story-card-content {
	padding: 18px 9px 8px;
}

/* Identity: one archival feature and a two-by-two supporting collection. */
.layout-ezidi_identity {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(225px, auto));
}

.layout-ezidi_identity > .story-card:first-child {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.layout-ezidi_identity > .story-card:first-child .story-card-media {
	aspect-ratio: 4 / 3;
}

/* Book reviews: a feature review beside a clean three-title shelf. */
.layout-book_review {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.layout-book_review > .story-card:first-child {
	grid-column: span 6;
	background: linear-gradient(145deg, var(--et-surface), var(--et-accent-soft));
}

.layout-book_review > .story-card:nth-child(n+2) {
	grid-column: span 2;
	padding: 10px;
}

.layout-book_review > .story-card:nth-child(n+2) .story-card-media {
	aspect-ratio: 3 / 4;
}

.layout-book_review > .story-card:nth-child(n+2) .story-card-title {
	font-size: clamp(18px, 1.35vw, 23px);
}

/* Podcast: a distinct listening room rather than another white card row. */
.homepage-section-podcast {
	padding: clamp(25px, 4vw, 52px);
	background: #151515;
	border-radius: var(--et-radius-lg);
	box-shadow: var(--et-shadow);
}

.homepage-section-podcast .section-heading-row {
	border-color: rgba(255,255,255,.24);
}

.homepage-section-podcast .section-kicker,
.homepage-section-podcast .text-link {
	color: var(--et-accent);
}

.homepage-section-podcast .section-heading-row h2 {
	color: #ffffff;
}

.layout-podcast {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.layout-podcast > .story-card {
	position: relative;
	background: #202020;
	color: #ffffff;
	border-color: #353535;
}

.layout-podcast > .story-card:first-child {
	grid-column: span 6;
}

.layout-podcast > .story-card:nth-child(n+2) {
	grid-column: span 2;
}

.layout-podcast .story-card-title {
	color: #ffffff;
}

.layout-podcast .story-card-meta,
.layout-podcast .story-card-excerpt {
	color: rgba(255,255,255,.68);
}

.layout-podcast .story-card-media::after {
	content: "▶";
	position: absolute;
	left: 15px;
	bottom: 15px;
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	background: var(--et-accent);
	color: #17120d;
	border-radius: 999px;
	font-size: 14px;
	box-shadow: 0 8px 20px rgba(0,0,0,.26);
}

/* Stronger, agency-style article hierarchy. */
.single-shell {
	padding-top: clamp(55px, 7vw, 105px);
}

.article-header {
	position: relative;
	width: min(1080px, 100%);
	padding-bottom: 34px;
	border-bottom: 1px solid var(--et-border-strong);
}

.article-publication-mark {
	margin: 0 0 18px;
	color: var(--et-accent-deep);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.article-header .article-title {
	max-width: 1050px;
	font-size: clamp(54px, 7.3vw, 104px);
	line-height: .98;
	letter-spacing: -.052em;
}

.article-meta-panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	width: min(980px, 100%);
	margin-top: 34px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
	overflow: hidden;
}

.article-meta-unit {
	display: flex;
	min-height: 78px;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 15px 20px;
}

.article-meta-unit + .article-meta-unit {
	border-left: 1px solid var(--et-border);
}

.article-meta-label {
	color: var(--et-accent-deep);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.article-meta-unit a,
.article-meta-unit time,
.article-meta-unit > span:last-child {
	color: var(--et-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
}

.article-featured-media {
	width: min(1180px, 100%);
	margin: 48px auto 58px;
	padding: clamp(8px, 1vw, 13px);
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: calc(var(--et-radius-lg) + 4px);
	box-shadow: var(--et-shadow-soft);
}

.article-featured-media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 820px;
	margin-inline: auto;
	object-fit: contain;
	border-radius: var(--et-radius-lg);
}

.article-featured-media figcaption {
	display: none;
}

.article-reading-frame {
	width: min(980px, 100%);
	margin-inline: auto;
}

.article-body {
	width: min(780px, 100%);
	margin-inline: auto;
	font-size: clamp(19px, 1.45vw, 22px);
	line-height: 1.82;
}

.article-body > p:first-of-type {
	font-size: 1.08em;
	line-height: 1.74;
}

.article-body > p:first-of-type::first-letter {
	float: left;
	margin: .1em .11em 0 0;
	color: var(--et-accent-deep);
	font-family: var(--et-serif);
	font-size: 3.25em;
	font-weight: 600;
	line-height: .78;
}

.article-tools {
	display: grid;
	grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr);
	gap: 28px;
	align-items: center;
	width: 100%;
	margin: 60px auto 0;
	padding: 26px;
	background: var(--et-surface-soft);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.article-tools-intro p:last-child {
	margin: 7px 0 0;
	color: var(--et-muted);
	font-size: 13px;
	line-height: 1.5;
}

.article-tools-label {
	margin: 0;
	color: var(--et-accent-deep);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.article-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 9px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.article-actions a,
.article-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 14px;
	background: var(--et-surface);
	color: var(--et-text);
	border: 1px solid var(--et-border-strong);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.article-actions a > span:first-child,
.article-actions button > span:first-child {
	display: inline-grid;
	place-items: center;
	min-width: 16px;
	font-weight: 900;
}

.article-actions a:hover,
.article-actions button:hover {
	background: var(--et-accent);
	color: #17120d;
	border-color: var(--et-accent-deep);
}

.comments-area {
	width: min(980px, 100%);
	margin: 76px auto 0;
	padding: clamp(24px, 4vw, 48px);
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
}

.comments-title,
.comment-reply-title {
	font-size: clamp(30px, 3vw, 46px);
}

.related-articles {
	width: min(1180px, 100%);
	margin: 88px auto 0;
}

.related-editorial-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
	gap: 22px;
	align-items: stretch;
}

.story-card-related-lead {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
	gap: 22px;
	align-items: center;
	padding: 16px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius-lg);
}

.story-card-related-lead .story-card-media {
	aspect-ratio: 4 / 3;
}

.story-card-related-lead .story-card-title {
	font-size: clamp(30px, 3vw, 48px);
}

.related-side-stack {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.story-card-related-compact {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
	padding: 12px;
	background: var(--et-surface);
	border: 1px solid var(--et-border);
	border-radius: var(--et-radius);
}

.story-card-related-compact .story-card-media {
	aspect-ratio: 1 / 1;
}

.story-card-related-compact .story-card-content {
	padding: 0;
}

.story-card-related-compact .story-card-title {
	font-size: clamp(20px, 1.8vw, 28px);
}

.story-card-related-compact .story-card-excerpt {
	display: none;
}

/* Responsive newsroom behaviour. */
@media (max-width: 1180px) {
	.lead-package-grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(270px, .7fr);
	}

	.section-story-layout:not(.layout-interview) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.section-story-layout:not(.layout-interview) > .story-card {
		grid-column: auto;
		grid-row: auto;
	}

	.section-story-layout:not(.layout-interview) > .story-card:first-child {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(300px, 1.05fr) minmax(0, .95fr);
		gap: 18px;
		align-items: center;
	}

	.section-story-layout:not(.layout-interview) > .story-card:first-child .story-card-media {
		height: 100%;
		aspect-ratio: 16 / 10;
	}

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

	.homepage-section-podcast .section-story-layout > .story-card:first-child {
		grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
	}

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

	.related-side-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}
}

@media (max-width: 900px) {
	.lead-package-grid {
		grid-template-columns: 1fr;
	}

	.lead-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto minmax(280px, auto);
	}

	.lead-side-heading {
		grid-column: 1 / -1;
	}

	.article-meta-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.article-meta-unit:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--et-border);
	}

	.article-meta-unit:nth-child(4) {
		border-top: 1px solid var(--et-border);
	}

	.article-tools {
		grid-template-columns: 1fr;
	}

	.article-actions {
		justify-content: flex-start;
	}

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

@media (max-width: 760px) {
	.editorial-ticker {
		align-items: stretch;
		flex-direction: column;
		gap: 7px;
	}

	.editorial-ticker-label {
		align-self: flex-start;
	}

	.editorial-ticker-group {
		gap: 22px;
		padding-right: 22px;
	}

	.editorial-ticker-group a {
		max-width: 320px;
		font-size: 13px;
	}

	.lead-package {
		margin-bottom: 58px;
	}

	.lead-package-heading {
		align-items: flex-end;
	}

	.lead-slider-stage {
		min-height: 540px;
		aspect-ratio: 4 / 5;
	}

	.lead-slide-shade {
		background: linear-gradient(0deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.18) 76%);
	}

	.lead-slide-content {
		left: 22px;
		right: 22px;
		bottom: 68px;
	}

	.lead-slide-title {
		font-size: clamp(37px, 10.5vw, 55px);
	}

	.lead-slide-excerpt {
		display: none;
	}

	.lead-slider-controls {
		left: 20px;
		right: 20px;
		bottom: 16px;
	}

	.lead-side {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(270px, 78vw);
		grid-template-columns: none;
		grid-template-rows: auto minmax(300px, 1fr);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.lead-side::-webkit-scrollbar,
	.section-story-layout::-webkit-scrollbar {
		display: none;
	}

	.lead-side-heading {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0,0,0,0);
	}

	.story-card-lead-side {
		scroll-snap-align: start;
	}

	.section-story-layout,
	.section-story-layout:not(.layout-interview) {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(275px, 82vw);
		grid-template-columns: none;
		grid-template-rows: none;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 7px;
	}

	.section-story-layout > .story-card,
	.section-story-layout:not(.layout-interview) > .story-card,
	.section-story-layout:not(.layout-interview) > .story-card:first-child,
	.layout-sport_arts_culture > .story-card:nth-child(5) {
		display: flex;
		grid-column: auto;
		grid-row: auto;
		grid-template-columns: none;
		min-height: 100%;
		scroll-snap-align: start;
	}

	.section-story-layout > .story-card:first-child .story-card-media,
	.section-story-layout:not(.layout-interview) > .story-card:first-child .story-card-media {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.homepage-section-podcast {
		margin-inline: -7px;
		padding: 24px 14px 30px;
		border-radius: 20px;
	}

	.article-header {
		padding-bottom: 25px;
	}

	.article-header .article-title {
		font-size: clamp(43px, 12.5vw, 66px);
	}

	.article-meta-panel {
		grid-template-columns: 1fr;
	}

	.article-meta-unit + .article-meta-unit,
	.article-meta-unit:nth-child(3),
	.article-meta-unit:nth-child(4) {
		border-left: 0;
		border-top: 1px solid var(--et-border);
	}

	.article-featured-media {
		margin-block: 34px 42px;
		padding: 6px;
		border-radius: 18px;
	}

	.article-featured-media img {
		border-radius: 13px;
	}

	.article-body > p:first-of-type::first-letter {
		float: none;
		margin: 0;
		color: inherit;
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
	}

	.article-tools {
		margin-top: 45px;
		padding: 20px;
	}

	.related-side-stack {
		grid-template-columns: 1fr;
	}

	.story-card-related-compact {
		grid-template-columns: 120px minmax(0, 1fr);
	}
}

@media (max-width: 480px) {
	.lead-slider-stage {
		min-height: 500px;
	}

	.lead-slider-button {
		width: 38px;
		height: 38px;
	}

	.section-story-layout,
	.section-story-layout:not(.layout-interview) {
		grid-auto-columns: minmax(265px, 88vw);
	}

	.article-actions a,
	.article-actions button {
		flex: 1 1 calc(50% - 9px);
	}

	.story-card-related-compact {
		grid-template-columns: 98px minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.editorial-ticker-motion {
		animation: none;
		transform: none;
	}

	.lead-slide {
		transition: none;
	}
}

@media print {
	.article-tools {
		display: none !important;
	}
}

/* --------------------------------------------------------------------------
   Ezidi Times Editorial 1.3 — refined masthead, navigation, articles and pages
   -------------------------------------------------------------------------- */

.masthead-date-row {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: color-mix(in srgb, var(--surface) 92%, var(--accent-soft));
}

.masthead-date-row-inner {
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.masthead-date-row time {
	white-space: nowrap;
}

.masthead-date-line {
	width: min(80px, 12vw);
	height: 1px;
	background: var(--accent);
	opacity: 0.7;
}

.primary-menu > .menu-item-has-children > a,
.mobile-menu > .menu-item-has-children > a {
	display: flex;
	align-items: center;
	gap: 7px;
}

.menu-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1;
	transition: transform 180ms ease;
}

.primary-menu > .menu-item-has-children:hover > a .menu-chevron,
.primary-menu > .menu-item-has-children:focus-within > a .menu-chevron {
	transform: rotate(180deg);
}

.mobile-drawer-header {
	align-items: flex-start;
}

.mobile-drawer-brand {
	display: flex;
	flex: 1;
	min-width: 0;
	align-items: center;
	gap: 14px;
	color: var(--ink);
}

.mobile-drawer-symbol {
	position: relative;
	display: block;
	flex: 0 0 116px;
	width: 116px;
	height: 72px;
}

.mobile-drawer-symbol img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.mobile-drawer-brand strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mobile-navigation {
	padding-top: 8px;
}

.mobile-menu .menu-item-has-children > a {
	justify-content: space-between;
}

.mobile-drawer-social {
	margin-top: clamp(34px, 7vh, 70px);
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.mobile-drawer-social h2 {
	margin: 0 0 16px;
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.mobile-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-social-links a,
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mobile-social-links a {
	width: 42px;
	height: 42px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	color: var(--ink);
	background: var(--surface);
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.mobile-social-links a:hover,
.mobile-social-links a:focus-visible {
	transform: translateY(-2px);
	background: var(--ink);
	color: var(--surface);
	border-color: var(--ink);
}

.mobile-social-links svg,
.social-icon svg,
.article-action-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mobile-social-links svg path[fill],
.social-icon svg path[fill] {
	fill: currentColor;
}

/* Measured continuous tickers. */
.editorial-ticker-viewport {
	overflow: hidden;
	min-width: 0;
}

.editorial-ticker-motion {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
}

.editorial-ticker-group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
}

.editorial-ticker-group a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-inline: 18px;
}

.editorial-ticker-group a + a::before {
	content: "•";
	margin-inline-end: 10px;
	color: var(--accent);
}

.editorial-ticker.is-ready .editorial-ticker-motion {
	animation: editorial-ticker-scroll var(--ticker-duration, 30s) linear infinite;
}

.editorial-ticker:hover .editorial-ticker-motion,
.editorial-ticker:focus-within .editorial-ticker-motion {
	animation-play-state: paused;
}

@keyframes editorial-ticker-scroll {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(var(--ticker-translate, -50%), 0, 0); }
}

/* Article presentation. */
.single-shell {
	padding-top: clamp(50px, 7vw, 100px);
}

.article-header {
	max-width: 1100px;
	margin-inline: auto;
	padding-bottom: clamp(24px, 3vw, 40px);
	border-bottom: 1px solid var(--line-strong);
}

.article-publication-mark {
	margin: 0 0 18px;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.article-title {
	max-width: 1050px;
	font-size: clamp(2.6rem, 5.1vw, 5.6rem);
	line-height: 0.99;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.article-standfirst {
	max-width: 830px;
	margin: 22px 0 0;
	font-family: var(--font-display);
	font-size: clamp(1.13rem, 1.8vw, 1.45rem);
	line-height: 1.45;
	color: var(--muted);
}

.article-byline {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	font-size: 0.91rem;
	font-weight: 650;
	color: var(--muted);
}

.article-byline-author,
.article-byline-facts {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.article-byline-author a {
	color: var(--ink);
	font-weight: 800;
}

.article-byline-prefix {
	font-weight: 500;
}

.article-byline-separator {
	color: var(--accent);
}

.article-featured-media {
	width: min(1120px, 100%);
	margin: clamp(32px, 5vw, 70px) auto clamp(40px, 6vw, 80px);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.article-featured-media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(78vh, 900px);
	margin-inline: auto;
	border-radius: clamp(14px, 2vw, 24px);
	object-fit: contain;
	box-shadow: 0 22px 60px rgba(30, 22, 12, 0.08);
}

.article-featured-media.is-landscape img {
	width: 100%;
	object-fit: cover;
}

.article-featured-media.is-portrait {
	max-width: 760px;
}

.article-reading-frame {
	max-width: 840px;
	margin-inline: auto;
}

.article-body {
	font-family: var(--font-display);
	font-size: clamp(1.08rem, 1.45vw, 1.27rem);
	line-height: 1.82;
}

.article-body > p:first-of-type::first-letter {
	float: left;
	margin: 0.08em 0.11em 0 0;
	font-family: var(--font-display);
	font-size: 4.45em;
	font-weight: 600;
	line-height: 0.75;
	color: var(--accent-deep);
}

.article-body h2,
.article-body h3,
.article-body h4 {
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.article-body h2 {
	margin-top: 2.25em;
	font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.article-body h3 {
	margin-top: 2em;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.article-body blockquote {
	margin: 2.5em 0;
	padding: 0.25em 0 0.25em 1.35em;
	border-left: 3px solid var(--accent);
	font-size: 1.2em;
	font-style: italic;
}

.article-body img {
	border-radius: 14px;
}

.article-tools {
	margin-top: clamp(50px, 7vw, 84px);
	padding: 24px;
	display: grid;
	grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.7fr);
	gap: 28px;
	align-items: center;
	border-top: 1px solid var(--line-strong);
	border-bottom: 1px solid var(--line-strong);
	background: color-mix(in srgb, var(--surface) 87%, var(--accent-soft));
}

.article-tools-intro p {
	margin: 0;
}

.article-tools-label {
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.article-tools-intro p + p {
	margin-top: 6px;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--muted);
}

.article-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: flex-end;
}

.article-action {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.article-action:hover,
.article-action:focus-visible {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--surface);
	transform: translateY(-1px);
}

.article-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.article-action-icon svg {
	width: 16px;
	height: 16px;
}

.related-articles {
	margin-top: clamp(70px, 9vw, 120px);
}

.related-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.3vw, 30px);
}

.related-articles .related-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.related-articles .related-card .story-media {
	aspect-ratio: 16 / 10;
	border-radius: 14px;
	overflow: hidden;
}

.related-articles .related-card .story-body {
	padding: 15px 0 0;
}

.related-articles .related-card h3 {
	font-size: clamp(1.1rem, 1.8vw, 1.42rem);
	line-height: 1.13;
}

/* Standard pages. */
.page-shell {
	padding-top: clamp(48px, 7vw, 100px);
	padding-bottom: clamp(70px, 9vw, 130px);
}

.page-editorial-header {
	position: relative;
	min-height: 320px;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.55fr);
	gap: 40px;
	align-items: end;
	padding: clamp(34px, 5vw, 70px);
	border: 1px solid var(--line-strong);
	border-radius: clamp(20px, 3vw, 34px);
	background:
		radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--accent-soft) 72%, transparent) 0, transparent 38%),
		var(--surface);
	overflow: hidden;
}

.page-header-copy {
	position: relative;
	z-index: 2;
}

.page-kicker {
	margin: 0 0 16px;
	font-size: 0.77rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.page-editorial-header h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 6.6rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.page-deck {
	max-width: 700px;
	margin: 24px 0 0;
	font-family: var(--font-display);
	font-size: clamp(1.08rem, 1.7vw, 1.4rem);
	line-height: 1.5;
	color: var(--muted);
}

.page-header-mark {
	position: relative;
	align-self: center;
	justify-self: center;
	width: min(280px, 100%);
	aspect-ratio: 1;
	opacity: 0.42;
}

.page-header-mark img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.page-featured-media {
	max-width: 1180px;
	margin: 38px auto 0;
}

.page-featured-media img {
	width: 100%;
	max-height: 690px;
	object-fit: cover;
	border-radius: 24px;
}

.page-content-panel {
	max-width: 940px;
	margin: clamp(36px, 5vw, 70px) auto 0;
	padding: clamp(28px, 4vw, 58px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 24px 70px rgba(30, 22, 12, 0.06);
}

.page-content {
	font-family: var(--font-display);
	font-size: clamp(1.02rem, 1.3vw, 1.18rem);
	line-height: 1.8;
}

.page-content > *:first-child {
	margin-top: 0;
}

.page-content h2 {
	margin-top: 2.2em;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.page-content h3 {
	margin-top: 1.9em;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.page-content blockquote {
	margin-inline: 0;
	padding: 0.5em 0 0.5em 1.25em;
	border-left: 3px solid var(--accent);
	font-style: italic;
}

.page-feather-dark,
[data-theme="dark"] .page-feather-light {
	display: none;
}

[data-theme="dark"] .page-feather-dark {
	display: block;
}

@media (max-width: 980px) {
	.article-tools {
		grid-template-columns: 1fr;
	}

	.article-actions {
		justify-content: flex-start;
	}

	.page-editorial-header {
		grid-template-columns: 1fr;
		min-height: 280px;
	}

	.page-header-mark {
		position: absolute;
		right: -30px;
		bottom: -50px;
		width: 260px;
	}
}

@media (max-width: 760px) {
	.masthead-date-row-inner {
		min-height: 40px;
		font-size: 0.7rem;
	}

	.masthead-date-line {
		width: 32px;
	}

	.mobile-drawer-symbol {
		flex-basis: 98px;
		width: 98px;
		height: 62px;
	}

	.article-title {
		font-size: clamp(2.42rem, 12vw, 4.25rem);
		line-height: 0.98;
	}

	.article-byline {
		align-items: flex-start;
		flex-direction: column;
	}

	.article-featured-media {
		margin-top: 30px;
		margin-bottom: 40px;
	}

	.article-featured-media img {
		max-height: 72vh;
		border-radius: 14px;
	}

	.article-body {
		font-size: 1.06rem;
		line-height: 1.75;
	}

	.article-body > p:first-of-type::first-letter {
		float: left;
		font-size: 4em;
	}

	.article-tools {
		margin-inline: -2px;
		padding: 20px;
		border: 1px solid var(--line);
		border-radius: 18px;
	}

	.article-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.article-action {
		width: 100%;
	}

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

	.related-articles .related-card {
		display: grid;
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 15px;
		align-items: center;
		padding-block: 15px;
		border-top: 1px solid var(--line);
	}

	.related-articles .related-card .story-media {
		aspect-ratio: 1;
	}

	.related-articles .related-card .story-body {
		padding: 0;
	}

	.page-editorial-header {
		min-height: 250px;
		padding: 30px 24px;
		border-radius: 22px;
	}

	.page-editorial-header h1 {
		font-size: clamp(2.8rem, 13vw, 4.8rem);
	}

	.page-header-mark {
		width: 200px;
		right: -42px;
		bottom: -54px;
	}

	.page-content-panel {
		padding: 26px 20px;
		border-radius: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.editorial-ticker.is-ready .editorial-ticker-motion {
		animation: none;
		transform: none;
	}
}

@media print {
	.masthead-date-row,
	.article-tools,
	.mobile-drawer-social {
		display: none !important;
	}

	.article-featured-media img {
		max-height: none;
		box-shadow: none;
	}
}

/* --------------------------------------------------------------------------
   Ezidi Times Editorial 1.4 — stronger navigation, article media and newsroom
   -------------------------------------------------------------------------- */

:root {
	--ink: var(--et-ink);
	--text: var(--et-text);
	--muted: var(--et-muted);
	--surface: var(--et-surface);
	--surface-soft: var(--et-surface-soft);
	--line: var(--et-border);
	--line-strong: var(--et-border-strong);
	--accent: var(--et-accent);
	--accent-deep: var(--et-accent-deep);
	--accent-soft: var(--et-accent-soft);
	--font-display: var(--et-serif);
}

/* The complete drawer is useful on large screens too. */
.mobile-menu-toggle {
	display: inline-grid !important;
	grid-column: 1;
}

.navigation-inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
}

@media (min-width: 1181px) {
	.primary-menu {
		gap: clamp(8px, 1.05vw, 18px);
	}

	.primary-menu a {
		font-size: 13px;
	}
}

/* Make editorial branches unmistakable without making the menu noisy. */
.primary-menu > .menu-item-has-children > a,
.category-rail-menu > .menu-item-has-children > a {
	gap: 8px;
}

.menu-branch-indicator {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	min-height: 24px;
	padding: 2px 4px 2px 7px;
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 38%, var(--et-border));
	border-radius: 999px;
	background: var(--et-accent-soft);
	color: var(--et-accent-deep);
	transition: background var(--et-transition), border-color var(--et-transition), transform var(--et-transition);
}

.menu-child-count {
	min-width: 11px;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
}

.menu-chevron {
	display: inline-grid;
	place-items: center;
	width: 16px;
	height: 16px;
	transition: transform var(--et-transition);
}

.menu-chevron svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.primary-menu > .menu-item-has-children:hover > a .menu-branch-indicator,
.primary-menu > .menu-item-has-children:focus-within > a .menu-branch-indicator {
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	transform: translateY(-1px);
}

.primary-menu > .menu-item-has-children:hover > a .menu-chevron,
.primary-menu > .menu-item-has-children:focus-within > a .menu-chevron {
	transform: rotate(180deg);
}

.mobile-menu > .menu-item-has-children {
	border-left: 4px solid var(--et-accent-deep);
	background: linear-gradient(100deg, var(--et-accent-soft), var(--et-surface) 42%);
}

.mobile-menu .menu-branch-indicator {
	display: none;
}

.mobile-menu .submenu-toggle {
	width: 42px;
	height: 42px;
	top: 6px;
	right: 7px;
	background: var(--et-accent-soft);
	border-color: color-mix(in srgb, var(--et-accent-deep) 42%, var(--et-border));
	color: var(--et-accent-deep);
}

.mobile-menu .submenu-open > .submenu-toggle {
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	color: #17120d;
}

.mobile-drawer-social {
	margin-top: 54px;
	padding: 28px 6px 12px;
	border-top: 1px solid var(--et-border-strong);
}

.mobile-drawer-social h2 {
	margin-bottom: 18px;
	color: var(--et-ink);
	font-size: 12px;
	letter-spacing: .12em;
}

.mobile-social-links {
	gap: 13px;
}

.mobile-social-links a {
	width: 44px;
	height: 44px;
}

/* The lead photograph is presented as a distinct editorial object. */
.article-featured-stage {
	position: relative;
	isolation: isolate;
	width: min(1240px, 100%);
	margin: clamp(34px, 5vw, 72px) auto clamp(48px, 7vw, 92px);
	padding: clamp(22px, 3.4vw, 48px);
	border: 1px solid var(--et-border-strong);
	border-radius: clamp(24px, 3vw, 38px);
	background:
		radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--et-accent-soft) 78%, transparent) 0, transparent 46%),
		linear-gradient(145deg, var(--et-surface), var(--et-surface-soft));
	box-shadow: 0 28px 80px rgba(35, 25, 12, .09);
	overflow: hidden;
}

.article-featured-stage::before,
.article-featured-stage::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.article-featured-stage::before {
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 8%, color-mix(in srgb, var(--et-accent-deep) 12%, transparent) 8% 8.08%, transparent 8.08% 91.92%, color-mix(in srgb, var(--et-accent-deep) 12%, transparent) 91.92% 92%, transparent 92%),
		linear-gradient(0deg, transparent 0 9%, color-mix(in srgb, var(--et-accent-deep) 10%, transparent) 9% 9.08%, transparent 9.08%);
}

.article-featured-stage::after {
	top: 0;
	left: 50%;
	width: 54px;
	height: 5px;
	border-radius: 0 0 999px 999px;
	background: var(--et-accent-deep);
	transform: translateX(-50%);
}

.article-featured-stage-line {
	position: absolute;
	top: 16px;
	left: 50%;
	z-index: 2;
	width: 8px;
	height: 8px;
	background: var(--et-accent);
	border: 1px solid var(--et-accent-deep);
	transform: translateX(-50%) rotate(45deg);
}

.article-featured-stage .article-featured-media {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.article-featured-stage.is-portrait .article-featured-media {
	max-width: 690px;
}

.article-featured-stage.is-landscape .article-featured-media {
	max-width: 1160px;
}

.article-featured-stage .article-featured-media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(78vh, 920px);
	margin: 0 auto;
	object-fit: contain;
	border: 1px solid color-mix(in srgb, var(--et-border-strong) 75%, transparent);
	border-radius: clamp(14px, 2vw, 24px);
	background: var(--et-surface);
	box-shadow: 0 24px 70px rgba(25, 18, 10, .16);
}

.article-featured-stage.is-landscape .article-featured-media img {
	width: 100%;
	object-fit: cover;
}

html[data-theme="dark"] .article-featured-stage {
	box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

/* A restrained newsroom share rail rather than a large button card. */
.article-sharebar {
	display: grid;
	grid-template-columns: minmax(180px, .6fr) minmax(0, 1.4fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	margin-top: clamp(54px, 7vw, 88px);
	padding: 22px 0;
	border-top: 1px solid var(--et-border-strong);
	border-bottom: 1px solid var(--et-border-strong);
}

.article-sharebar-heading {
	position: relative;
	padding-left: 18px;
}

.article-sharebar-heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	bottom: 3px;
	width: 3px;
	border-radius: 999px;
	background: var(--et-accent-deep);
}

.article-sharebar-kicker {
	margin: 0 0 4px;
	color: var(--et-accent-deep);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.article-sharebar-heading h2 {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.05;
}

.article-sharebar-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	min-width: 0;
}

.article-share-networks,
.article-share-utilities {
	display: flex;
	align-items: center;
	gap: 9px;
}

.article-share-icon,
.article-share-utility {
	appearance: none;
	-webkit-appearance: none;
	color: var(--et-ink);
	background: transparent;
	border: 1px solid var(--et-border-strong);
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--et-transition), color var(--et-transition), background var(--et-transition), border-color var(--et-transition), box-shadow var(--et-transition);
}

.article-share-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	padding: 0;
	border-radius: 999px;
	background: var(--et-surface);
}

.article-share-icon-primary {
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	color: #17120d;
}

.article-share-icon svg,
.article-share-utility svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.article-share-icon:hover,
.article-share-icon:focus-visible {
	background: var(--et-ink);
	border-color: var(--et-ink);
	color: var(--et-surface);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(18, 14, 9, .12);
}

.article-share-utilities {
	padding-left: 20px;
	border-left: 1px solid var(--et-border);
}

.article-share-utility {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 12px;
	border-color: transparent;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 800;
}

.article-share-utility:hover,
.article-share-utility:focus-visible,
.article-share-utility.is-copied {
	background: var(--et-accent-soft);
	border-color: color-mix(in srgb, var(--et-accent-deep) 35%, var(--et-border));
	color: var(--et-ink);
	transform: translateY(-1px);
}

/* Newsroom section system: one identity, multiple editorial rhythms. */
.homepage-shell {
	counter-reset: et-home-section;
}

.homepage-section {
	counter-increment: et-home-section;
	position: relative;
	margin-block: clamp(72px, 9vw, 132px);
}

.homepage-section .section-kicker::before {
	content: "0" counter(et-home-section) "  ·  ";
	color: var(--et-muted);
	letter-spacing: .08em;
}

.homepage-section .section-heading-row {
	margin-bottom: clamp(22px, 3vw, 34px);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--et-border-strong);
}

.homepage-section .section-heading-row h2 {
	font-size: clamp(38px, 4.2vw, 66px);
	letter-spacing: -.035em;
}

.section-story-layout > .story-card {
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section-story-layout > .story-card:hover,
.section-story-layout > .story-card:focus-within {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--et-accent-deep) 42%, var(--et-border));
	box-shadow: 0 18px 44px rgba(30, 22, 12, .08);
}

/* Legal: a principal investigation followed by a numbered case file. */
.layout-legal {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: auto;
}

.layout-legal > .story-card:first-child {
	grid-column: 1 / -1;
	grid-row: auto;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
	gap: 0;
	min-height: 430px;
	padding: 0;
	background: var(--et-ink);
	border: 0;
	border-radius: clamp(20px, 2.4vw, 30px);
	color: var(--et-surface);
	overflow: hidden;
}

.layout-legal > .story-card:first-child .story-card-media {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.layout-legal > .story-card:first-child .story-card-content {
	justify-content: center;
	padding: clamp(30px, 4vw, 58px);
}

.layout-legal > .story-card:first-child .story-card-title,
.layout-legal > .story-card:first-child .story-card-title a {
	color: var(--et-surface);
}

.layout-legal > .story-card:first-child .story-card-meta,
.layout-legal > .story-card:first-child .story-card-excerpt {
	color: color-mix(in srgb, var(--et-surface) 72%, transparent);
}

.layout-legal > .story-card:not(:first-child) {
	counter-increment: legal-file;
	position: relative;
	padding-top: 42px;
	border-radius: 16px;
	box-shadow: none;
}

.layout-legal > .story-card:not(:first-child)::before {
	content: none;
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	color: var(--et-accent-deep);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .13em;
}

.layout-legal {
	counter-reset: legal-file;
}

/* Sport, Arts & Culture: an image-led evening edition. */
.homepage-section-sport_arts_culture {
	padding: clamp(28px, 4vw, 56px);
	border-radius: clamp(24px, 3vw, 38px);
	background: #151515;
	box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

.homepage-section-sport_arts_culture .section-heading-row {
	border-color: rgba(255,255,255,.24);
}

.homepage-section-sport_arts_culture .section-heading-row h2,
.homepage-section-sport_arts_culture .text-link {
	color: #ffffff;
}

.homepage-section-sport_arts_culture .section-kicker {
	color: var(--et-accent);
}

.layout-sport_arts_culture {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(250px, 1fr));
}

.layout-sport_arts_culture > .story-card {
	position: relative;
	display: flex;
	grid-template-columns: none;
	gap: 0;
	align-items: stretch;
	min-height: 250px;
	padding: 0;
	background: #202020;
	border-color: #333333;
	border-radius: 20px;
	color: #ffffff;
}

.layout-sport_arts_culture > .story-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 540px;
}

.layout-sport_arts_culture > .story-card:nth-child(2),
.layout-sport_arts_culture > .story-card:nth-child(3),
.layout-sport_arts_culture > .story-card:nth-child(4),
.layout-sport_arts_culture > .story-card:nth-child(5) {
	grid-column: span 1;
	grid-row: span 1;
}

.layout-sport_arts_culture .story-card-media {
	position: absolute;
	inset: 0;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.layout-sport_arts_culture .story-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6,6,6,.92), rgba(6,6,6,.08) 76%);
}

.layout-sport_arts_culture .story-card-content {
	position: relative;
	z-index: 2;
	justify-content: flex-end;
	padding: clamp(20px, 2.5vw, 34px);
}

.layout-sport_arts_culture .story-card-title,
.layout-sport_arts_culture .story-card-title a {
	color: #ffffff;
}

.layout-sport_arts_culture .story-card-meta,
.layout-sport_arts_culture .story-card-excerpt {
	color: rgba(255,255,255,.72);
}

/* Events: an agenda with two visual leads and compact dispatches. */
.layout-events {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.layout-events > .story-card:nth-child(-n+2) {
	grid-column: span 6;
	padding: 14px;
	border-radius: 22px;
}

.layout-events > .story-card:nth-child(n+3) {
	grid-column: span 4;
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 0;
	background: transparent;
	border: 0;
	border-top: 1px solid var(--et-border-strong);
	border-radius: 0;
	box-shadow: none;
}

.layout-events > .story-card:nth-child(n+3) .story-card-media {
	aspect-ratio: 1;
	border-radius: 14px;
}

.layout-events > .story-card:nth-child(n+3) .story-card-content {
	padding: 0;
}

.layout-events .story-card-meta time {
	display: inline-flex;
	padding: 3px 7px;
	border-radius: 999px;
	background: var(--et-accent-soft);
	color: var(--et-accent-deep);
	font-weight: 800;
}

/* Opinion: a composed ideas desk with one dominant essay. */
.homepage-section-opinion {
	padding-block: clamp(28px, 4vw, 48px);
	border-top: 1px solid var(--et-border-strong);
	border-bottom: 1px solid var(--et-border-strong);
}

.layout-opinion {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: auto;
}

.layout-opinion > .story-card:first-child {
	grid-column: span 7;
	grid-row: span 2;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 0;
	padding: 0;
	border-left: 6px solid var(--et-accent-deep);
	border-radius: 0 24px 24px 0;
	overflow: hidden;
}

.layout-opinion > .story-card:first-child .story-card-media {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.layout-opinion > .story-card:first-child .story-card-content {
	position: relative;
	justify-content: center;
	padding: clamp(28px, 4vw, 54px);
}

.layout-opinion > .story-card:first-child .story-card-content::before {
	content: "“";
	position: absolute;
	top: 8px;
	right: 24px;
	color: var(--et-accent-soft);
	font-family: var(--et-serif);
	font-size: 110px;
	line-height: 1;
	pointer-events: none;
}

.layout-opinion > .story-card:nth-child(n+2) {
	grid-column: span 5;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 13px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--et-border);
	border-radius: 0;
	box-shadow: none;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-media {
	aspect-ratio: 1;
	border-radius: 14px;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-content {
	padding: 0;
}

/* Interviews: one profile feature and three concise conversations. */
.layout-interview {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.layout-interview > .story-card:first-child {
	grid-column: span 6;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 0;
	padding: 0;
	border-radius: 24px;
	overflow: hidden;
}

.layout-interview > .story-card:first-child .story-card-media {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.layout-interview > .story-card:first-child .story-card-content {
	justify-content: center;
	padding: clamp(26px, 3.4vw, 46px);
}

.layout-interview > .story-card:nth-child(n+2) {
	grid-column: span 2;
	padding: 10px;
	border-radius: 18px;
}

.layout-interview > .story-card:nth-child(n+2) .story-card-media {
	aspect-ratio: 4 / 5;
}

/* Identity: a warm archival collection around the holiday ticker. */
.homepage-section-ezidi_identity {
	padding: clamp(28px, 4vw, 56px);
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 26%, var(--et-border));
	border-radius: clamp(24px, 3vw, 38px);
	background:
		radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--et-accent) 32%, transparent), transparent 34%),
		var(--et-accent-soft);
}

.layout-ezidi_identity {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(220px, auto));
}

.layout-ezidi_identity > .story-card {
	background: color-mix(in srgb, var(--et-surface) 88%, transparent);
	border-color: color-mix(in srgb, var(--et-accent-deep) 26%, var(--et-border));
}

.layout-ezidi_identity > .story-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
	padding: 16px;
}

.layout-ezidi_identity > .story-card:first-child .story-card-media {
	aspect-ratio: 4 / 3;
}

/* Reviews: a feature review and a quiet cover shelf. */
.homepage-section-book_review {
	padding: clamp(24px, 3.5vw, 44px);
	border-radius: 28px;
	background: linear-gradient(145deg, var(--et-surface), var(--et-accent-soft));
	box-shadow: inset 0 0 0 1px var(--et-border);
}

.layout-book_review {
	position: relative;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	padding-bottom: 18px;
}

.layout-book_review::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 3px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--et-accent-deep) 42%, var(--et-border));
}

.layout-book_review > .story-card:first-child {
	grid-column: span 6;
	display: grid;
	grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
	gap: 0;
	padding: 0;
	background: var(--et-surface);
	border-radius: 22px;
	overflow: hidden;
}

.layout-book_review > .story-card:first-child .story-card-media {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.layout-book_review > .story-card:first-child .story-card-content {
	justify-content: center;
	padding: clamp(24px, 3vw, 42px);
}

.layout-book_review > .story-card:nth-child(n+2) {
	grid-column: span 2;
	padding: 10px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.layout-book_review > .story-card:nth-child(n+2) .story-card-media {
	aspect-ratio: 3 / 4;
	box-shadow: 0 16px 34px rgba(30, 22, 12, .12);
}

/* Podcast already has a dark room; make its hierarchy more explicit. */
.homepage-section-podcast .layout-podcast > .story-card:first-child {
	grid-column: span 6;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 0;
	padding: 0;
	overflow: hidden;
}

.homepage-section-podcast .layout-podcast > .story-card:first-child .story-card-media {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
}

.homepage-section-podcast .layout-podcast > .story-card:first-child .story-card-content {
	justify-content: center;
	padding: clamp(28px, 4vw, 50px);
}

.layout-podcast .story-card-media::after {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	font-size: 18px;
	box-shadow: 0 8px 25px rgba(0,0,0,.28);
}

@media (max-width: 1120px) {
	.layout-legal,
	.layout-events,
	.layout-opinion,
	.layout-interview,
	.layout-book_review,
	.layout-podcast {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.layout-legal > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-interview > .story-card:first-child,
	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		grid-column: 1 / -1;
	}

	.layout-legal > .story-card:not(:first-child),
	.layout-events > .story-card,
	.layout-opinion > .story-card:nth-child(n+2),
	.layout-interview > .story-card:nth-child(n+2),
	.layout-book_review > .story-card:nth-child(n+2),
	.layout-podcast > .story-card:nth-child(n+2) {
		grid-column: auto;
	}

	.layout-events > .story-card:nth-child(n+3),
	.layout-opinion > .story-card:nth-child(n+2) {
		display: grid;
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.layout-sport_arts_culture {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(3, minmax(250px, auto));
	}

	.layout-sport_arts_culture > .story-card:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}

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

	.layout-ezidi_identity > .story-card:first-child {
		grid-column: span 2;
		grid-row: auto;
		display: grid;
		grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
		gap: 18px;
	}
}

@media (max-width: 820px) {
	.article-featured-stage {
		width: 100%;
		margin-block: 30px 48px;
		padding: 18px;
		border-radius: 22px;
	}

	.article-featured-stage::before {
		display: none;
	}

	.article-featured-stage-line {
		top: 10px;
	}

	.article-sharebar {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.article-sharebar-controls {
		justify-content: space-between;
	}

	.article-share-utilities {
		margin-left: auto;
	}

	.homepage-section-sport_arts_culture,
	.homepage-section-ezidi_identity,
	.homepage-section-book_review {
		padding: 24px 18px 28px;
		border-radius: 22px;
	}
}

@media (max-width: 760px) {
	.menu-branch-indicator {
		min-height: 22px;
	}

	.category-rail-menu .menu-child-count {
		display: none;
	}

	.section-story-layout,
	.layout-legal,
	.layout-sport_arts_culture,
	.layout-events,
	.layout-opinion,
	.layout-interview,
	.layout-ezidi_identity,
	.layout-book_review,
	.layout-podcast {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(278px, 86vw);
		grid-template-columns: none;
		grid-template-rows: none;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 4px;
		padding-bottom: 8px;
	}

	.section-story-layout > .story-card,
	.layout-legal > .story-card,
	.layout-sport_arts_culture > .story-card,
	.layout-events > .story-card,
	.layout-opinion > .story-card,
	.layout-interview > .story-card,
	.layout-ezidi_identity > .story-card,
	.layout-book_review > .story-card,
	.layout-podcast > .story-card,
	.layout-legal > .story-card:first-child,
	.layout-sport_arts_culture > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-interview > .story-card:first-child,
	.layout-ezidi_identity > .story-card:first-child,
	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		display: flex;
		grid-column: auto;
		grid-row: auto;
		grid-template-columns: none;
		min-height: 100%;
		scroll-snap-align: start;
	}

	.layout-sport_arts_culture > .story-card {
		min-height: 420px;
	}

	.layout-events > .story-card:nth-child(n+3),
	.layout-opinion > .story-card:nth-child(n+2) {
		display: flex;
		padding: 13px;
		background: var(--et-surface);
		border: 1px solid var(--et-border);
		border-radius: 18px;
	}

	.layout-events > .story-card:nth-child(n+3) .story-card-media,
	.layout-opinion > .story-card:nth-child(n+2) .story-card-media,
	.layout-interview > .story-card:nth-child(n+2) .story-card-media,
	.layout-book_review > .story-card:nth-child(n+2) .story-card-media {
		aspect-ratio: 16 / 10;
	}

	.layout-legal > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-interview > .story-card:first-child,
	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		background: var(--et-surface);
		color: var(--et-text);
	}

	.layout-legal > .story-card:first-child .story-card-title,
	.layout-legal > .story-card:first-child .story-card-title a {
		color: var(--et-ink);
	}

	.layout-legal > .story-card:first-child .story-card-meta,
	.layout-legal > .story-card:first-child .story-card-excerpt {
		color: var(--et-muted);
	}

	.article-sharebar-controls {
		align-items: stretch;
		flex-direction: column;
	}

	.article-share-networks {
		overflow-x: auto;
		padding-bottom: 3px;
	}

	.article-share-utilities {
		width: 100%;
		margin-left: 0;
		padding-top: 12px;
		padding-left: 0;
		border-top: 1px solid var(--et-border);
		border-left: 0;
	}

	.article-share-utility {
		flex: 1;
	}
}

@media (max-width: 520px) {
	.article-featured-stage {
		margin-inline: -2px;
		padding: 12px;
		border-radius: 18px;
	}

	.article-featured-stage .article-featured-media img {
		max-height: 72vh;
		border-radius: 12px;
	}

	.article-sharebar-heading h2 {
		font-size: 26px;
	}
}

@media print {
	.article-sharebar,
	.mobile-menu-toggle {
		display: none !important;
	}

	.article-featured-stage {
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}
}

/* --------------------------------------------------------------------------
   Ezidi Times Editorial 1.4 final refinements
   -------------------------------------------------------------------------- */

/* Keep the full navigation drawer available on every device. */
.navigation-inner .mobile-menu-toggle {
	display: inline-grid !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: var(--et-ink) !important;
	flex: 0 0 auto;
	align-self: center;
}

.mobile-menu-toggle .hamburger {
	display: grid;
	gap: 4px;
}

.mobile-menu-toggle .hamburger span {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 99px;
	background: currentColor !important;
	opacity: 1 !important;
}

/* +3 and +4 make the two editorial branches immediately understandable. */
.menu-child-count::before {
	content: "+";
}

.menu-branch-indicator {
	min-width: 42px;
	justify-content: center;
	padding-inline: 7px 5px;
	background: color-mix(in srgb, var(--et-accent) 52%, var(--et-surface));
	border-color: color-mix(in srgb, var(--et-accent-deep) 48%, var(--et-border));
	box-shadow: inset 0 0 0 1px color-mix(in srgb, #ffffff 35%, transparent);
}

.menu-child-count {
	font-size: 10px;
	letter-spacing: -0.03em;
}

/* The featured image is now a cinematic lead-image stage, not another body image. */
.article-featured-stage {
	min-height: clamp(500px, 62vw, 820px);
	padding: clamp(18px, 3vw, 42px);
	background: #17130f;
	border-color: color-mix(in srgb, var(--et-accent-deep) 30%, var(--et-border-strong));
	box-shadow: 0 32px 90px rgba(24, 17, 9, .18);
}

.article-featured-atmosphere,
.article-featured-shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.article-featured-atmosphere {
	z-index: 0;
	inset: -46px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: blur(34px) saturate(.95) contrast(.92);
	opacity: .58;
	transform: scale(1.14);
}

.article-featured-shade {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(10, 8, 5, .18), rgba(10, 8, 5, .42)),
		radial-gradient(circle at 50% 44%, rgba(255,255,255,.11), transparent 62%);
}

.article-featured-stage::before {
	z-index: 2;
	opacity: .42;
}

.article-featured-stage::after,
.article-featured-stage-line {
	z-index: 4;
}

.article-featured-stage .article-featured-media {
	z-index: 3;
	display: grid;
	place-items: center;
	min-height: clamp(430px, 56vw, 750px);
}

.article-featured-stage.is-portrait .article-featured-media {
	min-height: clamp(560px, 66vw, 820px);
	max-width: 760px;
}

.article-featured-stage .article-featured-media img,
.article-featured-stage.is-landscape .article-featured-media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(76vh, 820px);
	object-fit: contain;
	background: transparent;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: clamp(12px, 1.6vw, 22px);
	box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

html[data-theme="dark"] .article-featured-stage {
	background: #080706;
	border-color: color-mix(in srgb, var(--et-accent) 28%, var(--et-border));
}

/* Compact editorial sharing dock. */
.article-share-dock {
	display: grid;
	grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
	gap: clamp(24px, 4vw, 54px);
	align-items: center;
	width: min(900px, 100%);
	margin: clamp(58px, 8vw, 94px) auto 0;
	padding: 24px 0;
	border-top: 1px solid var(--et-border-strong);
	border-bottom: 1px solid var(--et-border-strong);
}

.article-share-copy {
	position: relative;
	padding-left: 17px;
}

.article-share-copy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 3px;
	border-radius: 999px;
	background: var(--et-accent-deep);
}

.article-share-label {
	margin: 0;
	color: var(--et-ink);
	font-family: var(--et-serif);
	font-size: clamp(23px, 2.2vw, 31px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.02em;
}

.article-share-copy p:last-child {
	margin: 7px 0 0;
	color: var(--et-muted);
	font-size: 12px;
	line-height: 1.45;
}

.article-share-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 9px;
}

.share-primary-button,
.share-social-button,
.share-utility-button {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--et-ink);
	background: var(--et-surface);
	border: 1px solid var(--et-border-strong);
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--et-transition), background var(--et-transition), color var(--et-transition), border-color var(--et-transition), box-shadow var(--et-transition);
}

.share-primary-button {
	gap: 8px;
	min-height: 45px;
	padding: 0 16px;
	background: var(--et-accent);
	border-color: var(--et-accent-deep);
	border-radius: 999px;
	color: #17120d;
	font-size: 12px;
	font-weight: 850;
}

.share-social-button {
	width: 45px;
	height: 45px;
	border-radius: 999px;
}

.share-utility-button {
	gap: 7px;
	min-height: 43px;
	padding: 0 12px;
	border-color: transparent;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 800;
}

.share-primary-button:hover,
.share-primary-button:focus-visible,
.share-social-button:hover,
.share-social-button:focus-visible {
	background: var(--et-ink);
	border-color: var(--et-ink);
	color: var(--et-surface);
	transform: translateY(-2px);
	box-shadow: 0 9px 24px rgba(20, 14, 8, .13);
}

.share-utility-button:hover,
.share-utility-button:focus-visible,
.share-utility-button.is-copied {
	background: var(--et-accent-soft);
	border-color: color-mix(in srgb, var(--et-accent-deep) 38%, var(--et-border));
	color: var(--et-ink);
	transform: translateY(-1px);
}

.share-primary-button svg,
.share-social-button svg,
.share-utility-button svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.article-share-divider {
	width: 1px;
	height: 34px;
	margin-inline: 5px;
	background: var(--et-border);
}

/* Small finish details for the more expressive homepage systems. */
.homepage-section-legal .section-heading-row,
.homepage-section-events .section-heading-row,
.homepage-section-interview .section-heading-row {
	position: relative;
}

.homepage-section-legal .section-heading-row::after,
.homepage-section-events .section-heading-row::after,
.homepage-section-interview .section-heading-row::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: clamp(70px, 9vw, 130px);
	height: 3px;
	border-radius: 999px;
	background: var(--et-accent-deep);
}

.homepage-section-opinion .story-card-title,
.homepage-section-interview .story-card-title,
.homepage-section-book_review .story-card-title {
	text-wrap: balance;
}

@media (max-width: 900px) {
	.article-share-dock {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.article-share-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	.article-featured-stage {
		min-height: 470px;
		margin-inline: -2px;
		padding: 12px;
		border-radius: 20px;
	}

	.article-featured-stage.is-portrait .article-featured-media,
	.article-featured-stage .article-featured-media {
		min-height: 450px;
	}

	.article-featured-stage .article-featured-media img,
	.article-featured-stage.is-landscape .article-featured-media img {
		max-height: 70vh;
		border-radius: 12px;
	}

	.article-share-dock {
		padding-block: 20px;
	}

	.article-share-actions {
		gap: 8px;
	}

	.article-share-divider {
		display: none;
	}

	.share-primary-button,
	.share-utility-button {
		flex: 1 1 auto;
	}
}

@media print {
	.article-share-dock,
	.article-featured-atmosphere,
	.article-featured-shade {
		display: none !important;
	}

	.article-featured-stage {
		min-height: 0;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}
}

/* --------------------------------------------------------------------------
   Ezidi Times Editorial 1.5 refinements
   -------------------------------------------------------------------------- */

/* Keep the drawer clear of the WordPress toolbar and give the masthead its own
   protected vertical space. */
body.admin-bar .drawer-backdrop {
	top: 32px;
}

body.admin-bar .mobile-drawer {
	top: 32px;
	height: calc(100dvh - 32px);
}

.mobile-drawer {
	padding: 0 18px 28px;
}

.mobile-drawer-header {
	position: relative;
	display: block;
	min-height: 176px;
	padding: 22px 58px 22px;
	text-align: center;
	border-bottom: 1px solid var(--et-border-strong);
}

.mobile-drawer-brand {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-content: center;
	gap: 8px;
	width: 100%;
	min-width: 0;
	color: var(--et-ink);
	text-align: center;
}

.mobile-drawer-symbol {
	position: relative;
	display: block;
	flex: none;
	width: 148px;
	height: 82px;
}

.mobile-drawer-symbol img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.mobile-drawer-brand strong {
	display: block;
	max-width: 100%;
	font-family: var(--et-serif);
	font-size: clamp(24px, 5.6vw, 30px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.mobile-menu-close {
	position: absolute;
	top: 14px;
	right: 0;
	z-index: 2;
}

.mobile-navigation {
	padding-top: 16px;
}

@media (max-width: 782px) {
	body.admin-bar .drawer-backdrop {
		top: 46px;
	}

	body.admin-bar .mobile-drawer {
		top: 46px;
		height: calc(100dvh - 46px);
	}
}

@media (max-width: 420px) {
	.mobile-drawer-header {
		min-height: 154px;
		padding-inline: 48px;
	}

	.mobile-drawer-symbol {
		width: 126px;
		height: 70px;
	}

	.mobile-drawer-brand strong {
		font-size: 22px;
		letter-spacing: .1em;
	}
}

/* A standard editorial chevron replaces the numerical +3 / +4 pills. */
.menu-child-count {
	display: none !important;
}

.menu-branch-indicator {
	display: inline-grid;
	place-items: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	min-width: 22px;
	min-height: 22px;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 42%, var(--et-border));
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: var(--et-accent-deep);
}

.menu-chevron {
	width: 13px;
	height: 13px;
}

.menu-chevron svg {
	width: 13px;
	height: 13px;
	stroke-width: 1.9;
}

.primary-menu > .menu-item-has-children:hover > a .menu-branch-indicator,
.primary-menu > .menu-item-has-children:focus-within > a .menu-branch-indicator {
	background: var(--et-accent-soft);
	border-color: var(--et-accent-deep);
	transform: none;
}

.mobile-menu > .menu-item-has-children {
	position: relative;
	border-left: 1px solid var(--et-border);
	background: var(--et-surface);
}

.mobile-menu > .menu-item-has-children::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 14px;
	bottom: 14px;
	width: 3px;
	border-radius: 0 999px 999px 0;
	background: var(--et-accent-deep);
}

.mobile-menu .submenu-toggle {
	width: 38px;
	height: 38px;
	top: 8px;
	right: 9px;
	background: var(--et-surface-soft);
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 34%, var(--et-border));
	border-radius: 999px;
	color: var(--et-accent-deep);
}

.mobile-menu .submenu-toggle::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 47%;
	width: 8px;
	height: 8px;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	background: transparent;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: transform var(--et-transition);
}

.mobile-menu .submenu-toggle::after {
	display: none;
}

.mobile-menu .submenu-open > .submenu-toggle {
	background: var(--et-accent-soft);
	border-color: var(--et-accent-deep);
	color: var(--et-accent-deep);
}

.mobile-menu .submenu-open > .submenu-toggle::before {
	transform: translate(-50%, -25%) rotate(225deg);
}

/* The lead photograph uses a clean museum-mat treatment instead of a blurred
   duplicate of the image. */
.article-featured-stage {
	position: relative;
	isolation: isolate;
	width: min(1180px, 100%);
	min-height: 0 !important;
	margin: clamp(34px, 5vw, 68px) auto clamp(50px, 7vw, 88px);
	padding: clamp(14px, 2vw, 24px);
	background: linear-gradient(145deg, var(--et-surface-soft), var(--et-surface));
	border: 1px solid var(--et-border-strong);
	border-radius: clamp(18px, 2.2vw, 28px);
	box-shadow: 0 22px 60px rgba(30, 22, 13, .10);
	overflow: visible;
}

.article-featured-stage::before,
.article-featured-stage::after,
.article-featured-stage-line,
.article-featured-atmosphere,
.article-featured-shade {
	display: none !important;
}

.article-featured-accent {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: -1px;
	width: 94px;
	height: 4px;
	border-radius: 0 0 999px 999px;
	background: var(--et-accent-deep);
	transform: translateX(-50%);
}

.article-featured-stage .article-featured-media,
.article-featured-stage.is-portrait .article-featured-media,
.article-featured-stage.is-landscape .article-featured-media {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	min-height: 0 !important;
	margin: 0 auto;
}

.article-featured-stage.is-portrait .article-featured-media {
	max-width: 720px;
}

.article-featured-stage.is-landscape .article-featured-media {
	max-width: 1140px;
}

.article-featured-stage .article-featured-media img,
.article-featured-stage.is-landscape .article-featured-media img,
.article-featured-stage.is-portrait .article-featured-media img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	max-height: none !important;
	object-fit: contain;
	background: var(--et-surface);
	border: 1px solid color-mix(in srgb, var(--et-border-strong) 78%, transparent);
	border-radius: clamp(12px, 1.5vw, 18px);
	box-shadow: 0 12px 34px rgba(28, 20, 12, .10);
}

html[data-theme="dark"] .article-featured-stage {
	background: linear-gradient(145deg, #171513, #0f0e0d);
	border-color: var(--et-border-strong);
}

/* Additional share destinations retain the existing compact visual system. */
.article-share-dock {
	width: min(1040px, 100%);
}

.article-share-actions {
	gap: 8px;
}

/* Related coverage must align like a deliberate three-column newsroom grid. */
.related-articles-grid {
	align-items: stretch;
}

.related-articles-grid > .story-card-related-card {
	height: 100%;
}

.story-card-related-card {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.story-card-related-card .story-card-media {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 16px;
	background: var(--et-surface-soft);
}

.story-card-related-card .story-card-media .story-image,
.story-card-related-card .story-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-card-related-card .story-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px 0 0;
}

.story-card-related-card .story-card-title {
	display: -webkit-box;
	min-height: 3.35em;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.story-card-related-card .story-card-meta {
	margin-top: auto;
	padding-top: 14px;
}

@media (max-width: 760px) {
	.article-featured-stage {
		margin-inline: 0;
		padding: 10px;
		border-radius: 18px;
	}

	.article-featured-stage .article-featured-media img,
	.article-featured-stage.is-landscape .article-featured-media img,
	.article-featured-stage.is-portrait .article-featured-media img {
		border-radius: 11px;
	}

	.story-card-related-card {
		display: grid !important;
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 14px;
		align-items: center;
		padding-block: 14px;
		border-top: 1px solid var(--et-border);
	}

	.story-card-related-card .story-card-media {
		aspect-ratio: 1 / 1;
	}

	.story-card-related-card .story-card-content {
		padding: 0;
	}

	.story-card-related-card .story-card-title {
		min-height: 0;
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}
}

@media print {
	.article-featured-stage {
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}
}

/* ========================================================================
   Ezidi Times Editorial 1.6.2 — footer polish
   ======================================================================== */

/* The lead photograph is intentionally wider than the reading column and is
   presented as a clean news image, not as an object inside a decorative box. */
.article-featured-stage,
.article-featured-stage.is-landscape,
.article-featured-stage.is-portrait {
	width: min(1280px, calc(100vw - 48px));
	max-width: none;
	min-height: 0 !important;
	margin: clamp(34px, 5vw, 66px) 50% clamp(48px, 7vw, 86px);
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible;
	transform: translateX(-50%);
}

.article-featured-stage::before,
.article-featured-stage::after,
.article-featured-accent,
.article-featured-stage-line {
	display: none !important;
}

.article-featured-stage .article-featured-media,
.article-featured-stage.is-landscape .article-featured-media,
.article-featured-stage.is-portrait .article-featured-media {
	display: block;
	width: 100%;
	max-width: none !important;
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	background: var(--et-surface-soft);
	border-radius: clamp(8px, 1.1vw, 14px);
}

.article-featured-stage .article-featured-media img,
.article-featured-stage.is-landscape .article-featured-media img,
.article-featured-stage.is-portrait .article-featured-media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	object-fit: cover !important;
	object-position: center center;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Footer newsroom block. */
.footer-editorial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
}

.footer-heading {
	margin-bottom: 7px;
}

.footer-news-column .footer-heading {
	margin-bottom: 25px;
}

.footer-heading-note {
	max-width: 32ch;
	margin: 0 0 26px;
	color: var(--et-footer-muted);
	font-size: 12px;
	line-height: 1.5;
}

.footer-explore-heading-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
}

.footer-explore-heading-row > img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: saturate(.86) brightness(1.08);
}

.footer-explore-heading-row .footer-heading,
.footer-explore-heading-row .footer-heading-note {
	margin-bottom: 0;
}

.footer-explore-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255,255,255,.14);
}

.footer-explore-list li {
	border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-explore-list a {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	gap: 13px;
	align-items: center;
	padding: 16px 0;
	color: #fff;
	text-decoration: none;
}

.footer-explore-list a:hover,
.footer-explore-list a:focus-visible {
	color: var(--et-accent);
}

.footer-explore-mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	color: var(--et-accent);
	font-family: var(--et-serif);
	font-size: 15px;
	font-weight: 800;
}

.footer-explore-copy {
	display: grid;
	gap: 3px;
}

.footer-explore-copy strong {
	font-size: 14px;
	line-height: 1.25;
}

.footer-explore-copy small {
	color: var(--et-footer-muted);
	font-size: 11px;
	line-height: 1.4;
}

.footer-explore-arrow {
	font-size: 18px;
	transition: transform var(--et-transition);
}

.footer-explore-list a:hover .footer-explore-arrow,
.footer-explore-list a:focus-visible .footer-explore-arrow {
	transform: translateX(4px);
}

/* A more authoritative, coherent newsroom rhythm for homepage sections. */
.homepage-section {
	margin-block: clamp(82px, 9vw, 138px);
}

.homepage-section .section-kicker::before {
	content: none !important;
}

.homepage-section .section-heading-row {
	margin-bottom: 0;
	padding: 19px 0 17px;
	border-top: 3px solid var(--et-ink);
	border-bottom: 1px solid var(--et-border-strong);
}

.homepage-section .section-heading-row h2 {
	font-size: clamp(38px, 4vw, 62px);
	line-height: 1;
}

.homepage-section .section-kicker {
	margin-bottom: 7px;
	font-size: 10px;
	letter-spacing: .18em;
}

/* Legal and opinion read like desks: one authoritative lead and a compact
   stack of supporting coverage. */
.layout-legal,
.layout-opinion,
.layout-events,
.layout-interview {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: minmax(132px, auto);
	gap: 0;
	padding-top: 26px;
	border-bottom: 1px solid var(--et-border-strong);
}

.layout-legal > .story-card,
.layout-opinion > .story-card,
.layout-events > .story-card,
.layout-interview > .story-card {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: none !important;
}

.layout-legal > .story-card:first-child,
.layout-opinion > .story-card:first-child {
	grid-column: 1 / span 7;
	grid-row: 1 / span 4;
	display: block;
	min-height: 0;
	padding: 0 34px 30px 0;
	color: var(--et-ink);
	border-right: 1px solid var(--et-border-strong) !important;
}

.layout-events > .story-card:first-child,
.layout-interview > .story-card:first-child {
	grid-column: 6 / span 7;
	grid-row: 1 / span 4;
	display: block;
	min-height: 0;
	padding: 0 0 30px 34px;
	border-left: 1px solid var(--et-border-strong) !important;
}

.layout-legal > .story-card:first-child .story-card-media,
.layout-opinion > .story-card:first-child .story-card-media,
.layout-events > .story-card:first-child .story-card-media,
.layout-interview > .story-card:first-child .story-card-media {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	margin: 0 0 22px;
	border-radius: 12px;
	overflow: hidden;
}

.layout-legal > .story-card:first-child .story-card-content,
.layout-opinion > .story-card:first-child .story-card-content,
.layout-events > .story-card:first-child .story-card-content,
.layout-interview > .story-card:first-child .story-card-content {
	padding: 0;
}

.layout-legal > .story-card:first-child .story-card-title,
.layout-opinion > .story-card:first-child .story-card-title,
.layout-events > .story-card:first-child .story-card-title,
.layout-interview > .story-card:first-child .story-card-title {
	font-size: clamp(30px, 3.2vw, 48px);
	line-height: 1.02;
	letter-spacing: -.025em;
}

.layout-legal > .story-card:first-child .story-card-title a,
.layout-opinion > .story-card:first-child .story-card-title a,
.layout-events > .story-card:first-child .story-card-title a,
.layout-interview > .story-card:first-child .story-card-title a {
	color: var(--et-ink);
}

.layout-legal > .story-card:first-child .story-card-meta,
.layout-legal > .story-card:first-child .story-card-excerpt,
.layout-opinion > .story-card:first-child .story-card-meta,
.layout-opinion > .story-card:first-child .story-card-excerpt,
.layout-events > .story-card:first-child .story-card-meta,
.layout-events > .story-card:first-child .story-card-excerpt,
.layout-interview > .story-card:first-child .story-card-meta,
.layout-interview > .story-card:first-child .story-card-excerpt {
	color: var(--et-muted);
}

.layout-legal > .story-card:nth-child(n+2),
.layout-opinion > .story-card:nth-child(n+2) {
	grid-column: 8 / span 5;
}

.layout-events > .story-card:nth-child(n+2),
.layout-interview > .story-card:nth-child(n+2) {
	grid-column: 1 / span 5;
}

.layout-legal > .story-card:nth-child(n+2),
.layout-events > .story-card:nth-child(n+2),
.layout-interview > .story-card:nth-child(n+2) {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 17px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--et-border) !important;
}

.layout-legal > .story-card:nth-child(n+2),
.layout-opinion > .story-card:nth-child(n+2) {
	padding-left: 28px;
}

.layout-events > .story-card:nth-child(n+2),
.layout-interview > .story-card:nth-child(n+2) {
	padding-right: 28px;
}

.layout-legal > .story-card:nth-child(n+2) .story-card-media,
.layout-events > .story-card:nth-child(n+2) .story-card-media,
.layout-interview > .story-card:nth-child(n+2) .story-card-media {
	width: 138px;
	aspect-ratio: 4 / 3;
	border-radius: 9px;
}

.layout-legal > .story-card:nth-child(n+2) .story-card-content,
.layout-events > .story-card:nth-child(n+2) .story-card-content,
.layout-interview > .story-card:nth-child(n+2) .story-card-content {
	padding: 0;
}

.layout-legal > .story-card:nth-child(n+2) .story-card-title,
.layout-events > .story-card:nth-child(n+2) .story-card-title,
.layout-interview > .story-card:nth-child(n+2) .story-card-title {
	font-size: clamp(18px, 1.55vw, 24px);
	line-height: 1.08;
}

/* Supporting opinion pieces are deliberately text-forward. */
.layout-opinion > .story-card:nth-child(n+2) {
	position: relative;
	display: block;
	padding: 21px 0 21px 48px;
	border-bottom: 1px solid var(--et-border) !important;
}

.layout-opinion > .story-card:nth-child(n+2)::before {
	content: "“";
	position: absolute;
	left: 24px;
	top: 14px;
	color: var(--et-accent-deep);
	font-family: var(--et-serif);
	font-size: 42px;
	line-height: 1;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-media {
	display: none;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-content {
	padding: 0;
}

.layout-opinion > .story-card:nth-child(n+2) .story-card-title {
	font-size: clamp(21px, 1.9vw, 28px);
	line-height: 1.08;
}

/* Culture and identity remain strongly visual, but lose the card-wall feel. */
.layout-sport_arts_culture,
.layout-ezidi_identity {
	gap: 3px;
	padding-top: 26px;
}

.layout-sport_arts_culture > .story-card,
.layout-ezidi_identity > .story-card {
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.layout-sport_arts_culture > .story-card:first-child,
.layout-ezidi_identity > .story-card:first-child {
	border-radius: 16px 0 0 16px !important;
	overflow: hidden;
}

.layout-sport_arts_culture > .story-card:last-child,
.layout-ezidi_identity > .story-card:last-child {
	border-radius: 0 16px 16px 0 !important;
	overflow: hidden;
}

/* Reviews and podcasts keep their specialist character while using a cleaner
   headline hierarchy and fewer boxed surfaces. */
.homepage-section-book_review,
.homepage-section-podcast {
	box-shadow: none;
}

.layout-book_review > .story-card,
.layout-podcast > .story-card {
	box-shadow: none !important;
}

@media (max-width: 1100px) {
	.footer-editorial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-explore-column {
		grid-column: 1 / -1;
	}

	.footer-explore-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
		border-top: 0;
	}

	.footer-explore-list li {
		border: 1px solid rgba(255,255,255,.14);
		border-radius: 12px;
		padding-inline: 14px;
	}

	.layout-legal,
	.layout-opinion,
	.layout-events,
	.layout-interview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
		border-bottom: 0;
	}

	.layout-legal > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-events > .story-card:first-child,
	.layout-interview > .story-card:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
		padding: 0 0 28px;
		border-right: 0 !important;
		border-left: 0 !important;
		border-bottom: 1px solid var(--et-border-strong) !important;
	}

	.layout-legal > .story-card:nth-child(n+2),
	.layout-opinion > .story-card:nth-child(n+2),
	.layout-events > .story-card:nth-child(n+2),
	.layout-interview > .story-card:nth-child(n+2) {
		grid-column: auto;
		padding: 18px 0;
	}
}

@media (max-width: 760px) {
	.article-featured-stage,
	.article-featured-stage.is-landscape,
	.article-featured-stage.is-portrait {
		width: calc(100vw - 28px);
		margin-top: 28px;
		margin-bottom: 46px;
	}

	.article-featured-stage .article-featured-media,
	.article-featured-stage.is-landscape .article-featured-media,
	.article-featured-stage.is-portrait .article-featured-media {
		aspect-ratio: 4 / 3;
		border-radius: 8px;
	}

	.footer-editorial-grid,
	.footer-explore-list {
		grid-template-columns: 1fr;
	}

	.footer-explore-column {
		grid-column: auto;
	}

	.layout-legal,
	.layout-opinion,
	.layout-events,
	.layout-interview {
		display: block;
		padding-top: 18px;
	}

	.layout-legal > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-events > .story-card:first-child,
	.layout-interview > .story-card:first-child {
		padding-bottom: 24px;
	}

	.layout-legal > .story-card:nth-child(n+2),
	.layout-events > .story-card:nth-child(n+2),
	.layout-interview > .story-card:nth-child(n+2) {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 14px;
	}

	.layout-legal > .story-card:nth-child(n+2) .story-card-media,
	.layout-events > .story-card:nth-child(n+2) .story-card-media,
	.layout-interview > .story-card:nth-child(n+2) .story-card-media {
		width: 110px;
	}

	.homepage-section .section-heading-row {
		padding-top: 15px;
	}
}

@media print {
	.article-featured-stage,
	.article-featured-stage.is-landscape,
	.article-featured-stage.is-portrait {
		width: 100%;
		margin-inline: 0;
		transform: none;
	}
}

/* ========================================================================
   Ezidi Times Editorial 1.7.0 — warm newsroom and responsive edition
   ======================================================================== */

html[data-theme="dark"] {
	--et-deep: #2b211d;
	--et-deep-raised: #382a24;
	--et-deep-border: #55443b;
	--et-deep-text: #fffaf4;
	--et-deep-muted: #cfc1b8;
	--et-footer-muted: var(--et-deep-muted);
}

/* Softer, warmer editorial contrast. The established white, gold and cream
   colours remain unchanged; only hard black feature surfaces are replaced. */
.footer-editorial {
	background:
		radial-gradient(circle at 88% 8%, rgba(255, 208, 147, 0.09), transparent 31%),
		linear-gradient(145deg, var(--et-deep), #322620 72%);
	border-top: 1px solid color-mix(in srgb, var(--et-accent) 38%, transparent);
}

.footer-story-image,
.story-card-lead-side,
.lead-slider-stage {
	background: var(--et-deep-raised);
}

.footer-explore-list,
.footer-explore-list li {
	border-color: rgba(255, 244, 230, 0.16);
}

.footer-heading-with-mark {
	margin-bottom: 17px;
}

.footer-heading-with-mark .footer-small-heading {
	margin-bottom: 0;
}

.footer-heading-with-mark img {
	margin-left: 2px;
}

/* Section rules are now quieter and more newsroom-like than the former hard
   black line. A short gold rule keeps the identity recognisable. */
.homepage-section .section-heading-row {
	position: relative;
	border-top: 1px solid var(--et-border-strong);
}

.homepage-section .section-heading-row::before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	width: 82px;
	height: 3px;
	background: var(--et-accent-deep);
	border-radius: 999px;
}

.homepage-section-sport_arts_culture .section-heading-row,
.homepage-section-podcast .section-heading-row {
	border-color: rgba(255, 250, 244, 0.25);
}

.homepage-section-sport_arts_culture .section-heading-row::before,
.homepage-section-podcast .section-heading-row::before {
	background: var(--et-accent);
}

/* Legal: no CASE numbering and no desk label. The lead reads like an
   authoritative dossier without becoming another black panel. */
.layout-legal > .story-card:not(:first-child) {
	padding-top: 14px;
}

.layout-legal > .story-card:not(:first-child)::before {
	display: none !important;
	content: none !important;
}

.layout-legal > .story-card:first-child {
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--et-accent-soft) 72%, var(--et-surface)), var(--et-surface)) !important;
	color: var(--et-text) !important;
	border: 1px solid color-mix(in srgb, var(--et-accent-deep) 24%, var(--et-border)) !important;
	border-radius: 22px !important;
	box-shadow: 0 22px 58px rgba(58, 39, 23, 0.08) !important;
	overflow: hidden;
}

.layout-legal > .story-card:first-child .story-card-title,
.layout-legal > .story-card:first-child .story-card-title a {
	color: var(--et-ink) !important;
}

.layout-legal > .story-card:first-child .story-card-meta,
.layout-legal > .story-card:first-child .story-card-excerpt {
	color: var(--et-muted) !important;
}

/* Warm deep editions instead of hard black panels. */
.homepage-section-sport_arts_culture,
.homepage-section-podcast {
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 208, 147, 0.12), transparent 34%),
		linear-gradient(145deg, var(--et-deep), #30241f);
	box-shadow: 0 26px 70px rgba(50, 35, 27, 0.18);
}

.layout-sport_arts_culture > .story-card,
.layout-podcast > .story-card {
	background: var(--et-deep-raised);
	border-color: rgba(255, 244, 230, 0.16);
}

.layout-sport_arts_culture .story-card-media::after,
.layout-podcast .story-card-media::before {
	background: linear-gradient(to top, rgba(42, 29, 23, 0.94), rgba(42, 29, 23, 0.08) 76%);
}

.lead-slide-shade {
	background: linear-gradient(to top, rgba(38, 26, 20, 0.94), rgba(38, 26, 20, 0.08) 75%);
}

.story-card-lead-side .story-card-media::after {
	background: linear-gradient(to top, rgba(38, 26, 20, 0.92), rgba(38, 26, 20, 0.06) 74%);
}

/* Tablet refinement: compact two-column editorial packages. */
@media (min-width: 761px) and (max-width: 1120px) {
	.homepage-section {
		margin-block: clamp(66px, 8vw, 92px);
	}

	.homepage-section .section-heading-row h2 {
		font-size: clamp(38px, 5.6vw, 54px);
	}

	.section-story-layout {
		gap: 22px;
	}

	.layout-sport_arts_culture,
	.layout-ezidi_identity {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.layout-sport_arts_culture > .story-card,
	.layout-ezidi_identity > .story-card,
	.layout-sport_arts_culture > .story-card:first-child,
	.layout-ezidi_identity > .story-card:first-child {
		grid-column: auto;
		grid-row: auto;
		min-height: 360px;
		border-radius: 18px !important;
	}

	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		grid-template-columns: 1fr 1fr;
	}
}

/* Mobile edition: app-like horizontal story rails, less vertical repetition,
   consistent card sizes and a visible preview of the next story. */
@media (max-width: 760px) {
	.homepage-shell {
		overflow: clip;
	}

	.homepage-section {
		margin-block: 54px;
	}

	.homepage-section .section-heading-row {
		position: relative;
		align-items: flex-end;
		gap: 14px;
		margin-bottom: 18px;
		padding: 0 0 13px;
		border-top: 0;
		border-bottom: 2px solid color-mix(in srgb, var(--et-accent-deep) 50%, var(--et-border));
	}

	.homepage-section .section-heading-row::before {
		left: 0;
		top: auto;
		bottom: -2px;
		width: 56px;
		height: 3px;
	}

	.homepage-section .section-heading-row h2 {
		font-size: clamp(31px, 9vw, 42px);
		line-height: 1.02;
		letter-spacing: -0.025em;
	}

	.homepage-section .section-kicker {
		margin-bottom: 5px;
		font-size: 9px;
	}

	.homepage-section .text-link {
		flex: 0 0 auto;
		font-size: 10px;
		white-space: nowrap;
	}

	.section-story-layout,
	.layout-legal,
	.layout-sport_arts_culture,
	.layout-events,
	.layout-opinion,
	.layout-interview,
	.layout-ezidi_identity,
	.layout-book_review,
	.layout-podcast {
		display: grid !important;
		grid-template-columns: minmax(84vw, 84vw) !important;
		grid-auto-columns: minmax(74vw, 74vw) !important;
		grid-auto-flow: column !important;
		grid-template-rows: minmax(0, 1fr) !important;
		gap: 14px !important;
		margin-inline: -14px !important;
		padding: 2px 14px 18px !important;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline mandatory;
		scroll-padding-inline: 14px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		border: 0 !important;
	}

	.section-story-layout::-webkit-scrollbar,
	.layout-legal::-webkit-scrollbar,
	.layout-sport_arts_culture::-webkit-scrollbar,
	.layout-events::-webkit-scrollbar,
	.layout-opinion::-webkit-scrollbar,
	.layout-interview::-webkit-scrollbar,
	.layout-ezidi_identity::-webkit-scrollbar,
	.layout-book_review::-webkit-scrollbar,
	.layout-podcast::-webkit-scrollbar {
		display: none;
	}

	.section-story-layout > .story-card,
	.layout-legal > .story-card,
	.layout-sport_arts_culture > .story-card,
	.layout-events > .story-card,
	.layout-opinion > .story-card,
	.layout-interview > .story-card,
	.layout-ezidi_identity > .story-card,
	.layout-book_review > .story-card,
	.layout-podcast > .story-card,
	.layout-legal > .story-card:first-child,
	.layout-sport_arts_culture > .story-card:first-child,
	.layout-events > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-interview > .story-card:first-child,
	.layout-ezidi_identity > .story-card:first-child,
	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		position: relative;
		display: flex !important;
		grid-column: auto !important;
		grid-row: auto !important;
		flex-direction: column;
		min-width: 0;
		min-height: 410px;
		padding: 0 !important;
		background: var(--et-surface) !important;
		color: var(--et-text) !important;
		border: 1px solid var(--et-border) !important;
		border-radius: 18px !important;
		box-shadow: 0 12px 32px rgba(42, 30, 21, 0.07) !important;
		overflow: hidden;
		transform: none !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.section-story-layout > .story-card:first-child,
	.layout-legal > .story-card:first-child,
	.layout-sport_arts_culture > .story-card:first-child,
	.layout-events > .story-card:first-child,
	.layout-opinion > .story-card:first-child,
	.layout-interview > .story-card:first-child,
	.layout-ezidi_identity > .story-card:first-child,
	.layout-book_review > .story-card:first-child,
	.homepage-section-podcast .layout-podcast > .story-card:first-child {
		min-height: 450px;
	}

	.section-story-layout .story-card-media,
	.layout-legal .story-card-media,
	.layout-sport_arts_culture .story-card-media,
	.layout-events .story-card-media,
	.layout-opinion .story-card-media,
	.layout-interview .story-card-media,
	.layout-ezidi_identity .story-card-media,
	.layout-book_review .story-card-media,
	.layout-podcast .story-card-media,
	.layout-opinion > .story-card:nth-child(n+2) .story-card-media {
		position: relative !important;
		inset: auto !important;
		display: block !important;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 16 / 10 !important;
		margin: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	.section-story-layout .story-card-media::after,
	.layout-sport_arts_culture .story-card-media::after,
	.layout-podcast .story-card-media::before {
		display: none !important;
	}

	.section-story-layout .story-card-content,
	.layout-legal .story-card-content,
	.layout-sport_arts_culture .story-card-content,
	.layout-events .story-card-content,
	.layout-opinion .story-card-content,
	.layout-interview .story-card-content,
	.layout-ezidi_identity .story-card-content,
	.layout-book_review .story-card-content,
	.layout-podcast .story-card-content {
		position: relative !important;
		z-index: auto !important;
		display: flex;
		flex: 1 1 auto;
		justify-content: flex-start !important;
		padding: 17px 17px 18px !important;
		color: var(--et-text) !important;
	}

	.section-story-layout .story-card-title,
	.section-story-layout .story-card-title a,
	.layout-legal .story-card-title,
	.layout-legal .story-card-title a,
	.layout-sport_arts_culture .story-card-title,
	.layout-sport_arts_culture .story-card-title a,
	.layout-events .story-card-title,
	.layout-events .story-card-title a,
	.layout-opinion .story-card-title,
	.layout-opinion .story-card-title a,
	.layout-interview .story-card-title,
	.layout-interview .story-card-title a,
	.layout-ezidi_identity .story-card-title,
	.layout-ezidi_identity .story-card-title a,
	.layout-book_review .story-card-title,
	.layout-book_review .story-card-title a,
	.layout-podcast .story-card-title,
	.layout-podcast .story-card-title a {
		color: var(--et-ink) !important;
		font-size: clamp(23px, 6.8vw, 30px) !important;
		line-height: 1.04 !important;
	}

	.section-story-layout .story-card-meta,
	.section-story-layout .story-card-excerpt,
	.layout-legal .story-card-meta,
	.layout-legal .story-card-excerpt,
	.layout-sport_arts_culture .story-card-meta,
	.layout-sport_arts_culture .story-card-excerpt,
	.layout-events .story-card-meta,
	.layout-events .story-card-excerpt,
	.layout-opinion .story-card-meta,
	.layout-opinion .story-card-excerpt,
	.layout-interview .story-card-meta,
	.layout-interview .story-card-excerpt,
	.layout-ezidi_identity .story-card-meta,
	.layout-ezidi_identity .story-card-excerpt,
	.layout-book_review .story-card-meta,
	.layout-book_review .story-card-excerpt,
	.layout-podcast .story-card-meta,
	.layout-podcast .story-card-excerpt {
		color: var(--et-muted) !important;
	}

	.layout-opinion > .story-card:nth-child(n+2)::before {
		display: none !important;
	}

	/* Warm full-bleed editions on small screens. */
	.homepage-section-sport_arts_culture,
	.homepage-section-podcast {
		margin-inline: -14px;
		padding: 34px 14px 38px;
		border-radius: 0;
		box-shadow: none;
	}

	.homepage-section-sport_arts_culture .section-story-layout,
	.homepage-section-podcast .section-story-layout {
		margin-inline: 0 -14px !important;
		padding-left: 0 !important;
	}

	.homepage-section-sport_arts_culture .story-card,
	.homepage-section-podcast .story-card {
		background: var(--et-deep-raised) !important;
		color: var(--et-deep-text) !important;
		border-color: rgba(255, 244, 230, 0.16) !important;
	}

	.homepage-section-sport_arts_culture .story-card-title,
	.homepage-section-sport_arts_culture .story-card-title a,
	.homepage-section-podcast .story-card-title,
	.homepage-section-podcast .story-card-title a {
		color: var(--et-deep-text) !important;
	}

	.homepage-section-sport_arts_culture .story-card-meta,
	.homepage-section-sport_arts_culture .story-card-excerpt,
	.homepage-section-podcast .story-card-meta,
	.homepage-section-podcast .story-card-excerpt {
		color: var(--et-deep-muted) !important;
	}

	.homepage-section-ezidi_identity,
	.homepage-section-book_review {
		margin-inline: -14px;
		padding: 32px 14px 36px;
		border-radius: 0;
		box-shadow: none;
	}

	.homepage-section-ezidi_identity .section-story-layout,
	.homepage-section-book_review .section-story-layout {
		margin-inline: 0 -14px !important;
		padding-left: 0 !important;
	}

	.footer-editorial {
		padding-block: 48px;
	}

	.footer-news-column + .footer-news-column,
	.footer-explore-column {
		padding-top: 30px;
		border-top: 1px solid rgba(255, 244, 230, 0.15);
	}
}

@media (max-width: 480px) {
	.section-story-layout,
	.layout-legal,
	.layout-sport_arts_culture,
	.layout-events,
	.layout-opinion,
	.layout-interview,
	.layout-ezidi_identity,
	.layout-book_review,
	.layout-podcast {
		grid-template-columns: minmax(87vw, 87vw) !important;
		grid-auto-columns: minmax(79vw, 79vw) !important;
	}

	.section-story-layout > .story-card,
	.layout-legal > .story-card,
	.layout-sport_arts_culture > .story-card,
	.layout-events > .story-card,
	.layout-opinion > .story-card,
	.layout-interview > .story-card,
	.layout-ezidi_identity > .story-card,
	.layout-book_review > .story-card,
	.layout-podcast > .story-card {
		min-height: 390px;
	}
}

