/* ============================================
   Editorial Room — design system
   For: rooms × materials matrix
   (microcement/lavasteen × badkamer/keuken/...)
   Activated by wrapping page content in:
     <div class="editorial-room"> ... </div>
   ============================================ */

/* Hide theme's auto-generated page title H1 on editorial-room pages
   (single H1 best practice — the hero <h1> inside content is the real one) */
body.has-editorial-room .heading-title.page-title.entry-title,
body.has-editorial-room .breadcrumb-title-wrapper,
body.has-editorial-room .top-slideshow {
  display: none !important;
}

.editorial-room {
  --er-bg: oklch(97% 0.005 60);
  --er-bg-warm: oklch(95% 0.008 60);
  --er-ink: oklch(20% 0.01 40);
  --er-ink-soft: oklch(40% 0.01 40);
  --er-ink-muted: oklch(58% 0.008 40);
  --er-line: oklch(88% 0.008 60);
  --er-raku: oklch(40% 0.10 30);
  --er-raku-soft: oklch(52% 0.09 30);
  --er-raku-ink: oklch(28% 0.07 30);
  --er-maxw: 1180px;
  --er-display: "Fraunces", Georgia, serif;
  --er-body: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;

  color: var(--er-ink);
  background: var(--er-bg);
  font-family: var(--er-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Break out of theme container — full-bleed within page wrapper */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.editorial-room *,
.editorial-room *::before,
.editorial-room *::after {
  box-sizing: border-box;
}

.editorial-room img {
  display: block;
  max-width: 100%;
  height: auto;
}

.editorial-room a {
  color: var(--er-raku);
  text-decoration: none;
}

.editorial-room a:hover {
  color: var(--er-raku-ink);
}

/* ===== HERO (side-by-side via flexbox) ===== */

.editorial-room .er-hero {
  padding: 64px 32px 16px;
  background: var(--er-bg);
}

.editorial-room .er-hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-room .er-hero__media {
  flex: 0 0 700px;
  max-width: 700px;
}

.editorial-room .er-hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

.editorial-room .er-hero__text {
  flex: 1 1 auto;
  min-width: 0;
}

.editorial-room .er-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--er-raku);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.editorial-room .er-hero__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--er-raku);
}

.editorial-room .er-hero__title {
  font-family: var(--er-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--er-ink);
  margin: 0 0 24px;
  max-width: 14ch;
  text-wrap: balance;
}

.editorial-room .er-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--er-ink-soft);
  margin-top: 8px;
}

.editorial-room .er-hero__lead {
  font-family: var(--er-display);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--er-ink-soft);
  margin: 0;
  max-width: 42ch;
  font-style: italic;
}

/* ===== SECTIONS ===== */

.editorial-room .er-section {
  padding: 96px 32px;
}

.editorial-room .er-section--tight {
  padding: 0 32px;
}

.editorial-room .er-inner {
  max-width: var(--er-maxw);
  margin: 0 auto;
}

.editorial-room .er-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--er-raku);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.editorial-room .er-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--er-raku);
}

/* ===== EDITORIAL ROWS ===== */

.editorial-room .er-row {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 80px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}

.editorial-room .er-row + .er-row {
  border-top: 1px solid var(--er-line);
}

.editorial-room .er-row__media {
  position: relative;
}

.editorial-room .er-row__media img {
  width: 100%;
  height: auto;
  display: block;
}

.editorial-room .er-row--reverse {
  grid-template-columns: 1fr minmax(0, 320px);
}

.editorial-room .er-row--reverse .er-row__media {
  order: 2;
}

.editorial-room .er-row__num {
  font-family: var(--er-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--er-raku);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  display: block;
  font-feature-settings: "tnum";
}

.editorial-room .er-row__title {
  font-family: var(--er-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  color: var(--er-ink);
  margin: 0 0 24px;
  letter-spacing: -0.018em;
  max-width: 14ch;
  text-wrap: balance;
}

.editorial-room .er-row__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--er-ink-soft);
  margin: 0 0 16px;
  max-width: 42ch;
}

.editorial-room .er-row__body strong {
  color: var(--er-ink);
  font-weight: 600;
}

.editorial-room .er-row__note {
  font-family: var(--er-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--er-ink-soft);
  margin: 24px 0 0;
  padding: 14px 18px;
  background: oklch(95% 0.014 30);
  max-width: 42ch;
  font-style: italic;
}

.editorial-room .er-row__note a {
  font-style: normal;
  font-weight: 600;
  color: var(--er-raku);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.editorial-room .er-row__note a:hover {
  color: var(--er-raku-ink);
}

/* breakout / tight variants — no forced aspect, use natural image size */
.editorial-room .er-row--breakout {
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 80px;
}

.editorial-room .er-row--reverse.er-row--breakout {
  grid-template-columns: 1fr minmax(0, 360px);
}

.editorial-room .er-row--tight {
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 64px;
}

/* ===== SPECS ===== */

.editorial-room .er-specs {
  background: var(--er-bg-warm);
  padding: 120px 32px;
}

.editorial-room .er-specs__media {
  max-width: 460px;
  margin: 0 auto 64px;
}

.editorial-room .er-specs__media img {
  width: 100%;
  height: auto;
  display: block;
}

.editorial-room .er-specs__head {
  max-width: var(--er-maxw);
  margin: 0 auto 64px;
}

.editorial-room .er-specs__title {
  font-family: var(--er-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}

.editorial-room .er-specs__list {
  max-width: var(--er-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--er-line);
}

.editorial-room .er-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--er-line);
}

.editorial-room .er-spec:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--er-line);
}

.editorial-room .er-spec:nth-child(even) {
  padding-left: 48px;
}

.editorial-room .er-spec__num {
  font-family: var(--er-display);
  font-feature-settings: "tnum";
  font-size: 14px;
  color: var(--er-raku);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.editorial-room .er-spec__body strong {
  display: block;
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--er-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.editorial-room .er-spec__body span {
  color: var(--er-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== DEEPDIVE (verdieping content) ===== */

.editorial-room .er-deepdive {
  padding: 64px 32px;
}

.editorial-room .er-deepdive__inner {
  max-width: 720px;
  margin: 0 auto;
}

.editorial-room .er-deepdive__title {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--er-ink);
  margin: 0 0 32px;
  max-width: 18ch;
  text-wrap: balance;
}

.editorial-room .er-deepdive__sub {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--er-ink);
  margin: 32px 0 12px;
}

.editorial-room .er-deepdive__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--er-ink-soft);
  margin: 0 0 14px;
  max-width: 62ch;
}

.editorial-room .er-deepdive__body strong {
  color: var(--er-ink);
  font-weight: 600;
}

/* ===== READ MORE (under lavasteen card) ===== */

.editorial-room .er-readmore {
  max-width: 640px;
  margin: 24px auto 0;
  position: relative;
}

.editorial-room .er-readmore__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.editorial-room .er-readmore__text {
  position: relative;
  max-height: 88px;
  overflow: hidden;
  color: var(--er-ink-soft);
  font-size: 14px;
  line-height: 1.65;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-room .er-readmore__text p {
  margin: 0 0 12px;
}

.editorial-room .er-readmore__text strong {
  color: var(--er-ink);
  font-weight: 600;
}

.editorial-room .er-readmore__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--er-bg));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.editorial-room .er-readmore__toggle:checked ~ .er-readmore__text {
  max-height: 800px;
}

.editorial-room .er-readmore__toggle:checked ~ .er-readmore__text::after {
  opacity: 0;
}

.editorial-room .er-readmore__btn {
  display: inline-block;
  margin-top: 14px;
  color: var(--er-raku);
  font-family: var(--er-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  user-select: none;
}

.editorial-room .er-readmore__btn::before {
  content: "Lees meer";
}

.editorial-room .er-readmore__toggle:checked ~ .er-readmore__btn::before {
  content: "Lees minder";
}

.editorial-room .er-readmore__btn:hover {
  color: var(--er-raku-ink);
}

/* Deepdive variant: larger font, more height, inherit deepdive sizing */
.editorial-room .er-readmore--deepdive {
  max-width: 100%;
  margin: 0;
}

.editorial-room .er-readmore--deepdive .er-readmore__text {
  max-height: 120px;
  font-size: 16px;
  color: var(--er-ink-soft);
}

.editorial-room .er-readmore--deepdive .er-readmore__text p {
  margin: 0 0 14px;
  line-height: 1.65;
  max-width: 62ch;
}

.editorial-room .er-readmore--deepdive .er-readmore__text h3 {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--er-ink);
  margin: 32px 0 12px;
}

.editorial-room .er-readmore--deepdive .er-readmore__text::after {
  height: 80px;
}

.editorial-room .er-readmore--deepdive .er-readmore__toggle:checked ~ .er-readmore__text,
.editorial-room .er-readmore--deepdive.er-readmore[data-open] .er-readmore__text {
  max-height: 2000px;
}

/* ===== TRUST ===== */

.editorial-room .er-trust {
  padding: 120px 32px;
}

.editorial-room .er-trust__grid {
  max-width: var(--er-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.editorial-room .er-trust__lead {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}

.editorial-room .er-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-room .er-trust__list li {
  padding: 24px 0;
  border-top: 1px solid var(--er-line);
  font-size: 16px;
  line-height: 1.55;
  color: var(--er-ink-soft);
}

.editorial-room .er-trust__list li:last-child {
  border-bottom: 1px solid var(--er-line);
}

.editorial-room .er-trust__list strong {
  color: var(--er-ink);
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

/* ===== CROSSLINK ===== */

.editorial-room .er-crosslink {
  padding: 32px 32px 48px;
}

.editorial-room .er-crosslink__card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  color: #fff;
  aspect-ratio: 4 / 3;
}

.editorial-room .er-crosslink__card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 35%;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-room .er-crosslink__card:hover img {
  transform: scale(1.03);
}

.editorial-room .er-crosslink__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(15% 0.01 40 / 0.15) 0%, oklch(15% 0.01 40 / 0.10) 40%, oklch(15% 0.01 40 / 0.60) 100%);
}

.editorial-room .er-crosslink__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 32px;
}

.editorial-room .er-crosslink__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #fff;
}

.editorial-room .er-crosslink__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #fff;
}

.editorial-room .er-crosslink__title {
  font-family: var(--er-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}

.editorial-room .er-crosslink__sub {
  color: oklch(96% 0.005 60 / 0.88);
  font-size: 15px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.editorial-room .er-crosslink__sub::after {
  content: "\2192";
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-room .er-crosslink__card:hover .er-crosslink__sub::after {
  transform: translateX(6px);
}

/* ===== FAQ ===== */

.editorial-room .er-faq {
  padding: 64px 32px 80px;
  background: var(--er-bg-warm);
}

.editorial-room .er-faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.editorial-room .er-faq__title {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
  text-wrap: balance;
  max-width: 18ch;
}

.editorial-room .er-faq details {
  border-top: 1px solid var(--er-line);
  padding: 0;
}

.editorial-room .er-faq details:last-of-type {
  border-bottom: 1px solid var(--er-line);
}

.editorial-room .er-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--er-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.25s ease;
}

.editorial-room .er-faq summary::-webkit-details-marker {
  display: none;
}

.editorial-room .er-faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--er-ink-soft), var(--er-ink-soft)) center / 100% 1px no-repeat,
    linear-gradient(var(--er-ink-soft), var(--er-ink-soft)) center / 1px 100% no-repeat;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-image 0.25s ease;
}

.editorial-room .er-faq details[open] summary {
  color: var(--er-raku);
}

.editorial-room .er-faq details[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--er-raku), var(--er-raku)) center / 100% 1px no-repeat,
    linear-gradient(var(--er-raku), var(--er-raku)) center / 1px 100% no-repeat;
}

.editorial-room .er-faq__answer {
  padding: 0 0 32px;
  color: var(--er-ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

.editorial-room .er-faq__answer strong {
  color: var(--er-ink);
  font-weight: 600;
}

/* ===== SHOWROOM (homepage local block) ===== */

.editorial-room .er-showroom {
  padding: 80px 32px;
  background: var(--er-bg-warm);
}

.editorial-room .er-showroom__inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 64px;
  align-items: center;
  max-width: var(--er-maxw);
  margin: 0 auto;
}

.editorial-room .er-showroom__title {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--er-ink);
  margin: 0 0 20px;
  max-width: 16ch;
  text-wrap: balance;
}

.editorial-room .er-showroom__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--er-ink-soft);
  margin: 0 0 24px;
  max-width: 42ch;
}

.editorial-room .er-showroom__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--er-ink);
  margin: 0 0 20px;
}

.editorial-room .er-showroom__address strong {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: 18px;
}

.editorial-room .er-showroom__address a {
  color: var(--er-raku);
  text-decoration: none;
}

.editorial-room .er-showroom__address a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.editorial-room .er-showroom__address small {
  display: block;
  margin-top: 8px;
  color: var(--er-ink-muted);
  font-size: 13px;
}

.editorial-room .er-showroom__cta {
  margin: 0;
}

.editorial-room .er-link-strong {
  font-weight: 600;
  color: var(--er-raku);
  text-decoration: none;
  font-size: 15px;
}

.editorial-room .er-link-strong:hover {
  color: var(--er-raku-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.editorial-room .er-showroom__map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BESTSELLERS (WooCommerce shortcode wrapper) ===== */

.editorial-room .er-section__head {
  max-width: var(--er-maxw);
  margin: 0 auto 40px;
}

.editorial-room .er-bestsellers__title {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--er-ink);
  margin: 12px 0 0;
  max-width: 18ch;
}

.editorial-room .er-bestsellers {
  max-width: var(--er-maxw);
  margin: 0 auto;
}

/* WooCommerce product grid inside our system — restore some sane defaults */
.editorial-room .er-bestsellers ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.editorial-room .er-bestsellers ul.products li.product {
  margin: 0;
  width: auto;
  float: none;
  list-style: none;
}

.editorial-room .er-bestsellers ul.products li.product img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 880px) {
  .editorial-room .er-showroom {
    padding: 48px 24px;
  }
  .editorial-room .er-showroom__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-room .er-bestsellers ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CTA sub variant + accent ===== */

.editorial-room .er-cta__sub {
  position: relative;
  z-index: 1;
  font-family: var(--er-body);
  font-size: 16px;
  color: oklch(96% 0.005 60 / 0.88);
  margin: 16px 0 28px;
  max-width: 56ch;
}

/* ===== CTA ===== */

.editorial-room .er-cta {
  padding: 64px 32px;
  background: var(--er-raku);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.editorial-room .er-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, oklch(50% 0.10 30) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.editorial-room .er-cta__inner {
  position: relative;
  max-width: var(--er-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}

.editorial-room .er-cta__title {
  font-family: var(--er-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
  color: #fff;
}

.editorial-room .er-cta__title em {
  font-style: italic;
  font-weight: 400;
}

.editorial-room .er-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 280px;
}

.editorial-room .er-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--er-raku-ink);
  padding: 18px 32px;
  font-family: var(--er-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
  text-decoration: none;
}

.editorial-room .er-btn:hover {
  transform: translateY(-2px);
  background: oklch(98% 0.005 60);
  color: var(--er-raku-ink);
}

.editorial-room .er-btn::after {
  content: "\2192";
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-room .er-btn:hover::after {
  transform: translateX(4px);
}

.editorial-room .er-btn--ghost {
  background: transparent;
  color: #fff;
  padding: 6px 0;
  border-bottom: 1px solid oklch(96% 0.005 60 / 0.4);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.editorial-room .er-btn--ghost:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: none;
}

.editorial-room .er-btn--ghost::after {
  content: "\2192";
  margin-left: 8px;
}

/* ===== MOBILE ===== */

@media (max-width: 880px) {
  .editorial-room .er-section {
    padding: 64px 24px;
  }
  .editorial-room .er-hero {
    padding: 48px 24px 40px;
  }
  .editorial-room .er-hero__inner {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .editorial-room .er-hero__media {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .editorial-room .er-row,
  .editorial-room .er-row--breakout,
  .editorial-room .er-row--tight,
  .editorial-room .er-row--reverse,
  .editorial-room .er-row--reverse.er-row--breakout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .editorial-room .er-row__media {
    max-width: 380px;
    margin: 0 auto;
  }
  .editorial-room .er-row--reverse .er-row__media {
    order: 0;
  }
  .editorial-room .er-specs {
    padding: 64px 24px;
  }
  .editorial-room .er-specs__media {
    margin: 0 auto 32px;
    max-width: 100%;
  }
  .editorial-room .er-specs__list {
    grid-template-columns: 1fr;
  }
  .editorial-room .er-spec:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .editorial-room .er-spec:nth-child(even) {
    padding-left: 0;
  }
  .editorial-room .er-trust {
    padding: 64px 24px;
  }
  .editorial-room .er-trust__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-room .er-crosslink {
    padding: 32px 24px 64px;
  }
  .editorial-room .er-crosslink__card {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }
  .editorial-room .er-crosslink__body {
    padding: 24px;
    max-width: none;
  }
  .editorial-room .er-faq {
    padding: 64px 24px;
  }
  .editorial-room .er-cta {
    padding: 48px 24px;
  }
  .editorial-room .er-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-room .er-cta__actions {
    min-width: 0;
  }
}
