:root {
  --card-min-height: 360px;
}

.editorial-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) var(--pad) 54px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 30px;
}

.editorial-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.06em;
}

.editorial-hero p {
  margin: 22px 0 0;
  max-width: 700px;
  color: #5d5953;
  font-size: 13px;
  line-height: 1.78;
}

.editorial-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(90px, 12vw, 165px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.editorial-card {
  min-width: 0;
  min-height: var(--card-min-height);
  border: 1px solid var(--line);
  padding: 25px;
  background: rgba(255, 255, 255, .14);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, background .3s ease;
}

a.editorial-card {
  text-decoration: none;
}

@media (hover: hover) {
  .editorial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .36);
  }
}

.editorial-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.editorial-card h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(30px, 3.6vw, 53px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
}

.editorial-card .subline {
  margin: 10px 0 0;
  color: #5a5650;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-card p {
  margin: 18px 0 0;
  max-width: 540px;
  color: #5d5953;
  font-size: 12px;
  line-height: 1.72;
}

.editorial-card .card-action {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial-card.highlight {
  background: #161616;
  color: var(--bg);
  border-color: #161616;
}

.editorial-card.highlight .editorial-top,
.editorial-card.highlight p,
.editorial-card.highlight .subline,
.editorial-card.highlight .card-action {
  color: #b9b4ab;
}

@media (hover: hover) {
  .editorial-card.highlight:hover {
    background: #1b1b1b;
  }
}

.editorial-quote {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(76px, 8vw, 118px);
  text-align: center;
}

.editorial-quote p {
  margin: 0 auto;
  max-width: 960px;
  font-size: clamp(20px, 2.4vw, 35px);
  line-height: 1.34;
  font-weight: 300;
  letter-spacing: -.035em;
}

.editorial-quote small {
  display: block;
  margin-top: 19px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  :root {
    --card-min-height: 330px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 56px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-card {
    transition: none;
  }
}
