/* ============================================================
   Cine Artistlabs — Journal & Stories
   Light editorial theme. Cream surfaces, charcoal text, brand
   orange accent. Shared by /blog and /stories pages.
   Scoped under .editorial-page body class to avoid leaking
   into the rest of the (dark) site.
   ============================================================ */

.editorial-page {
  /* Local theme overrides — cream surfaces */
  --ed-bg:        #EBE4D2;
  --ed-surface:   #F0EADB;
  --ed-card:      #F5EFE0;
  --ed-fg-1:      #14130F;
  --ed-fg-2:      #3A3730;
  --ed-fg-3:      #6B6558;
  --ed-fg-4:      #8A8478;
  --ed-border-1:  rgba(20,19,15,0.10);
  --ed-border-2:  rgba(20,19,15,0.06);
  --ed-accent:    #B85C28;
  --ed-accent-bg: rgba(184, 92, 40, 0.10);

  background: var(--ed-bg);
  color: var(--ed-fg-1);
  font-family: var(--font-body, 'Inter'), -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hide the global dark Nav and Footer when an editorial page is shown */
.editorial-page .nav,
.editorial-page .footer { display: none; }

/* ---------- Editorial nav (cream) ---------- */
.ed-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(235, 228, 210, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ed-border-2);
}
.ed-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ed-nav__brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--ed-fg-1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ed-nav__brand-mark {
  display: inline-block;
  width: 28px;
  height: 18px;
  background: linear-gradient(to right,
    #E89A4A 0 16.6%, #D47A3A 16.6% 33.3%,
    #B85C28 33.3% 50%, #6FB5A8 50% 66.6%,
    #4A8F87 66.6% 83.3%, #2F6480 83.3% 100%);
  border-radius: 2px;
}
.ed-nav__links {
  display: flex; gap: 32px; font-size: 14px; color: var(--ed-fg-2);
}
.ed-nav__links a {
  color: inherit; text-decoration: none;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-nav__links a:hover, .ed-nav__links a.is-active { color: var(--ed-fg-1); }
.ed-nav__cta {
  font-size: 14px; text-decoration: none;
  color: var(--ed-bg); background: var(--ed-fg-1);
  padding: 10px 18px; border-radius: 100px;
  transition: background 200ms;
}
.ed-nav__cta:hover { background: #2A2722; }

/* ---------- Page header ---------- */
.ed-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.ed-header__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ed-header__main { max-width: 720px; }
.ed-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-accent);
  background: var(--ed-accent-bg);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ed-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  color: var(--ed-fg-1);
  text-wrap: pretty;
}
.ed-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ed-fg-3);
  max-width: 560px;
  margin: 0;
}

/* Journal ↔ Stories switch */
.ed-switch {
  display: inline-flex;
  gap: 4px;
  background: var(--ed-card);
  border: 1px solid var(--ed-border-1);
  padding: 4px;
  border-radius: 100px;
}
.ed-switch a {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  color: var(--ed-fg-3);
  text-decoration: none;
  transition: all 200ms;
}
.ed-switch a.is-active {
  background: var(--ed-fg-1);
  color: var(--ed-bg);
}

/* ---------- Featured hero card (image with overlay text) ---------- */
.ed-featured {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ed-fg-1);
  margin-bottom: 56px;
  display: block;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.ed-featured img,
.ed-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-featured:hover img,
.ed-featured:hover .ed-featured__img { transform: scale(1.02); }
.ed-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,19,15,0.85) 0%,
    rgba(20,19,15,0.5) 30%,
    rgba(20,19,15,0.1) 55%,
    rgba(20,19,15,0) 75%);
  pointer-events: none;
}
.ed-featured__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 44px;
  color: #F0EADB;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed-featured__row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.ed-pill {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  background: rgba(240, 234, 219, 0.14);
  border: 1px solid rgba(240, 234, 219, 0.20);
  color: #F0EADB;
  backdrop-filter: blur(8px);
}
.ed-pill--runtime {
  background: rgba(20,19,15,0.55);
  border-color: rgba(240,234,219,0.10);
  display: inline-flex; align-items: center; gap: 6px;
}
.ed-pill--runtime::before {
  content: '';
  width: 0; height: 0;
  border-left: 6px solid #F0EADB;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.ed-featured__title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 800px;
}
.ed-featured__excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(240, 234, 219, 0.82);
  margin: 0;
  max-width: 620px;
}
.ed-featured__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(240, 234, 219, 0.72);
  margin-top: 6px;
  flex-wrap: wrap;
}
.ed-meta__dot {
  width: 3px; height: 3px;
  background: currentColor; border-radius: 50%; opacity: 0.6;
}
.ed-featured__arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(240, 234, 219, 0.16);
  border: 1px solid rgba(240, 234, 219, 0.22);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #F0EADB; font-size: 18px;
  transition: background 200ms, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.ed-featured:hover .ed-featured__arrow {
  background: rgba(240, 234, 219, 0.28);
  transform: translate(2px, -2px);
}

/* Play button (Stories featured + cards) */
.ed-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(240, 234, 219, 0.18);
  border: 1px solid rgba(240, 234, 219, 0.28);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: background 200ms, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-play--lg { width: 84px; height: 84px; }
.ed-play--sm { width: 56px; height: 56px; opacity: 0.9; }
.ed-play::before {
  content: '';
  width: 0; height: 0;
  border-left-color: #F0EADB;
  border-left-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
}
.ed-play--lg::before { border-left-width: 22px; border-top-width: 13px; border-bottom-width: 13px; }
.ed-play--sm::before { border-left-width: 14px; border-top-width: 8px; border-bottom-width: 8px; margin-left: 4px; }
a:hover > .ed-play { background: rgba(240, 234, 219, 0.30); transform: translate(-50%, -50%) scale(1.05); }

/* Avatar */
.ed-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ed-accent);
  color: #F0EADB;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ed-avatar--lg { width: 36px; height: 36px; font-size: 13px; }
.ed-avatar--sm { width: 26px; height: 26px; font-size: 10.5px; }

/* ---------- Filter row ---------- */
.ed-filters {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.ed-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ed-tab {
  font-size: 14px; padding: 10px 16px; border-radius: 100px;
  color: var(--ed-fg-3); cursor: pointer;
  transition: all 200ms; border: 1px solid transparent;
  font-family: inherit;
  background: transparent;
}
.ed-tab:hover { color: var(--ed-fg-1); background: rgba(20,19,15,0.04); }
.ed-tab.is-active {
  color: var(--ed-fg-1); background: var(--ed-card);
  border-color: var(--ed-border-1);
}
.ed-search { position: relative; width: 280px; max-width: 100%; }
.ed-search input {
  width: 100%; padding: 12px 16px 12px 42px;
  background: var(--ed-card); border: 1px solid var(--ed-border-1);
  border-radius: 100px; font-family: inherit; font-size: 14px;
  color: var(--ed-fg-1);
}
.ed-search input::placeholder { color: var(--ed-fg-4); }
.ed-search input:focus { outline: none; border-color: var(--ed-fg-3); background: var(--ed-surface); }
.ed-search__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--ed-fg-4); font-size: 15px;
}

/* ---------- Card grid ---------- */
.ed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.ed-card {
  background: transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-card:hover { transform: translateY(-3px); }
.ed-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ed-fg-1);
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 18px;
  isolation: isolate;
}
.ed-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-card:hover .ed-card__media img { transform: scale(1.04); }
.ed-card__media--video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,19,15,0.45) 0%, rgba(20,19,15,0) 50%);
  pointer-events: none;
}
.ed-card__media--empty {
  display: grid; place-items: center;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(184,92,40,0.10), transparent 60%),
    var(--ed-card);
}
.ed-card__media--empty .mono { color: var(--ed-fg-4); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.ed-card__runtime {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(20, 19, 15, 0.78);
  color: #F0EADB;
}
.ed-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-accent);
  margin-bottom: 10px;
}
.ed-card__title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ed-fg-1);
  margin: 0 0 10px;
  text-wrap: pretty;
}
.ed-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ed-fg-3);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ed-card__foot {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ed-fg-3);
  margin-top: auto;
}
.ed-card__dot { width: 3px; height: 3px; background: var(--ed-fg-4); border-radius: 50%; }

/* ---------- Empty state ---------- */
.ed-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--ed-fg-3);
}
.ed-empty h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--ed-fg-1);
  margin: 0 0 12px;
}
.ed-empty p { max-width: 48ch; margin: 0 auto; }

/* ---------- Single article (Journal post + Story post) ---------- */
.ed-topback {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 32px 0;
}
.ed-topback a {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-fg-3);
  text-decoration: none;
  transition: color 200ms;
}
.ed-topback a:hover { color: var(--ed-fg-1); }

/* Cover (Journal) — image above title, rounded */
.ed-cover {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 0;
}
.ed-cover__frame {
  aspect-ratio: 16 / 9;
  background: var(--ed-fg-1);
  overflow: hidden;
  border-radius: 24px;
}
.ed-cover__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Video (Stories) — YouTube iframe */
.ed-video {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 0;
}
.ed-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ed-fg-1);
  overflow: hidden;
  border-radius: 24px;
}
.ed-video__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Article column */
.ed-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.ed-article__pills {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-bottom: 24px;
}
.ed-pill--neutral {
  background: var(--ed-accent-bg);
  color: var(--ed-accent);
  border: none;
  backdrop-filter: none;
}
.ed-pill--meta {
  background: var(--ed-card);
  color: var(--ed-fg-3);
  border: 1px solid var(--ed-border-1);
  backdrop-filter: none;
}
.ed-pill--meta.ed-pill--runtime { background: var(--ed-card); }
.ed-pill--meta.ed-pill--runtime::before { border-left-color: var(--ed-fg-3); }

.ed-article h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ed-fg-1);
  text-wrap: pretty;
}
.ed-lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ed-fg-2);
  margin: 0 0 36px;
  font-weight: 400;
}
.ed-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--ed-border-1);
  border-bottom: 1px solid var(--ed-border-1);
  margin: 0 0 48px;
  font-size: 14px;
  color: var(--ed-fg-3);
  flex-wrap: wrap;
}
.ed-byline__name { color: var(--ed-fg-1); font-weight: 500; }
.ed-byline__sep { color: var(--ed-fg-4); margin: 0 8px; }

/* Body prose */
.ed-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ed-fg-1);
}
.ed-body > * + * { margin-top: 24px; }
.ed-body p { margin: 0 0 24px; color: var(--ed-fg-1); }
.ed-body p strong { font-weight: 500; }
.ed-body p em, .ed-body p i {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.05em;
  color: var(--ed-fg-2);
}
.ed-body h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ed-fg-1);
  margin: 56px 0 16px;
}
.ed-body h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ed-fg-1);
  margin: 40px 0 12px;
}
.ed-body a {
  color: var(--ed-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 92, 40, 0.4);
  transition: border-color 200ms;
}
.ed-body a:hover { border-bottom-color: var(--ed-accent); }
.ed-body ul, .ed-body ol { padding-left: 1.4em; }
.ed-body li + li { margin-top: 0.4em; }
.ed-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--ed-accent);
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ed-fg-1);
}
.ed-body img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--ed-border-1);
  margin: 32px 0;
}
.ed-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92em;
  background: var(--ed-card);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--ed-border-1);
}
.ed-body pre {
  background: var(--ed-card);
  border: 1px solid var(--ed-border-1);
  border-radius: 8px;
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.55;
}
.ed-body pre code { background: transparent; padding: 0; border: 0; }
.ed-body hr {
  border: 0;
  height: 1px;
  background: var(--ed-border-1);
  margin: 40px 0;
}

/* Related project card (Stories) */
.ed-related {
  margin-top: 72px;
  padding: 28px;
  background: var(--ed-card);
  border: 1px solid var(--ed-border-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms;
}
.ed-related:hover {
  transform: translateY(-2px);
  border-color: rgba(20,19,15,0.18);
}
.ed-related__thumb {
  width: 120px; height: 80px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  background: var(--ed-fg-1);
}
.ed-related__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ed-related__copy { flex: 1; min-width: 0; }
.ed-related__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-fg-4);
  margin-bottom: 6px;
}
.ed-related__title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ed-fg-1);
  margin: 0 0 4px;
}
.ed-related__sub {
  font-size: 14px;
  color: var(--ed-fg-3);
  margin: 0;
}
.ed-related__arrow {
  color: var(--ed-fg-3);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ed-related:hover .ed-related__arrow { transform: translate(3px, -3px); color: var(--ed-fg-1); }

/* Endcap */
.ed-endcap {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ed-border-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-fg-3);
}
.ed-endcap a {
  text-decoration: none;
  color: var(--ed-fg-2);
  transition: color 200ms;
}
.ed-endcap a:hover { color: var(--ed-fg-1); }

/* ---------- Minimal footer ---------- */
.ed-footer {
  border-top: 1px solid var(--ed-border-2);
  padding: 28px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--ed-fg-3);
}
.ed-footer__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ed-fg-2);
  font-family: 'Inter Tight', sans-serif; font-weight: 500;
}
.ed-footer__mark {
  display: inline-block; width: 22px; height: 14px;
  background: linear-gradient(to right,
    #E89A4A 0 16.6%, #D47A3A 16.6% 33.3%,
    #B85C28 33.3% 50%, #6FB5A8 50% 66.6%,
    #4A8F87 66.6% 83.3%, #2F6480 83.3% 100%);
  border-radius: 2px;
}
.ed-footer__right { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.ed-footer a { text-decoration: none; color: var(--ed-fg-3); }
.ed-footer a:hover { color: var(--ed-fg-1); }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .ed-nav__links { display: none; }
  .ed-page { padding: 40px 24px 64px; }
  .ed-header__row { align-items: flex-start; }
  .ed-featured__content { padding: 24px 24px; }
  .ed-featured__arrow { top: 16px; right: 16px; width: 40px; height: 40px; }
  .ed-play--lg { width: 64px; height: 64px; }
  .ed-play--lg::before { border-left-width: 17px; border-top-width: 10px; border-bottom-width: 10px; }
  .ed-filters { gap: 16px; }
  .ed-search { width: 100%; }
  .ed-topback, .ed-cover, .ed-video, .ed-article { padding-left: 24px; padding-right: 24px; }
  .ed-cover__frame, .ed-video__frame { border-radius: 16px; }
  .ed-article { padding-top: 36px; padding-bottom: 64px; }
  .ed-article h1 { font-size: 36px; }
  .ed-lede { font-size: 19px; }
  .ed-related { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
  .ed-related__thumb { width: 100%; height: auto; aspect-ratio: 16 / 10; }
  .ed-related__arrow { display: none; }
  .ed-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-page * { transition: none !important; animation: none !important; }
}
