.editorial-roadmap {
  padding: 56px 0 18px;
  background: var(--bg);
}

.editorial-roadmap-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #15180f;
  color: #f4f6e9;
  box-shadow: var(--shadow);
}

.editorial-roadmap-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .58fr);
  gap: 48px;
  align-items: end;
  padding: 38px 40px;
  border-bottom: 1px solid rgba(227, 252, 0, .18);
}

.editorial-roadmap-kicker {
  display: block;
  margin-bottom: 11px;
  color: #e3fc00;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.editorial-roadmap-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.editorial-roadmap-head p {
  margin: 0;
  color: #b7c0a8;
  line-height: 1.7;
}

.publishing-cadence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #e3fc00;
  color: #171a10;
}

.publishing-cadence > div {
  padding: 22px 28px;
  border-right: 1px solid rgba(23, 26, 16, .2);
}

.publishing-cadence > div:last-child {
  border-right: 0;
}

.publishing-cadence strong,
.publishing-cadence span {
  display: block;
}

.publishing-cadence strong {
  font-size: 1.1rem;
  font-weight: 950;
}

.publishing-cadence span {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 750;
  opacity: .72;
}

.content-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-pillar {
  min-height: 238px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(150deg, rgba(255, 255, 255, .035), transparent);
}

.content-pillar:last-child {
  border-right: 0;
}

.content-pillar > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 252, 0, .45);
  border-radius: 50%;
  color: #e3fc00;
  font-size: .68rem;
  font-weight: 950;
}

.content-pillar h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 1.1rem;
}

.content-pillar p {
  margin: 0;
  color: #aab39c;
  font-size: .85rem;
  line-height: 1.65;
}

.content-pillar small {
  display: block;
  margin-top: 18px;
  color: #e3fc00;
  font-size: .62rem;
  line-height: 1.55;
  font-weight: 850;
  letter-spacing: .04em;
}

.news-list-intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin: 0 0 28px;
}

.news-list-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.045em;
}

.news-list-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

html[data-theme="dark"] .editorial-roadmap {
  background: var(--bg);
}

@media (max-width: 900px) {
  .editorial-roadmap-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-pillar:nth-child(2) {
    border-right: 0;
  }

  .content-pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .news-list-intro {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .editorial-roadmap {
    padding-top: 30px;
  }

  .editorial-roadmap-head {
    padding: 28px 22px;
  }

  .publishing-cadence,
  .content-pillar-grid {
    grid-template-columns: 1fr;
  }

  .publishing-cadence > div,
  .content-pillar,
  .content-pillar:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 26, 16, .18);
  }

  .content-pillar {
    min-height: 0;
    padding: 24px 22px;
  }

  .content-pillar h3 {
    margin-top: 18px;
  }
}
