.editorial-page{
  min-height:100%;
  margin:0;
  color:#fff;
  background:
    radial-gradient(760px 430px at 78% 10%, rgba(255,125,198,.20), transparent 65%),
    radial-gradient(620px 380px at 12% 18%, rgba(146,91,255,.24), transparent 68%),
    linear-gradient(155deg,#030817 0%,#080923 50%,#140820 100%);
}

.editorial-page::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.45) 0 1px,transparent 1.5px),
    radial-gradient(circle at 76% 36%,rgba(255,214,173,.55) 0 1px,transparent 1.5px);
  background-size:280px 280px,360px 360px;
  opacity:.30;
}

.editorial-shell{
  position:relative;
  z-index:1;
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  padding:28px 0 62px;
}

.editorial-hero{
  max-width:900px;
  margin:58px 0 34px;
}

.editorial-hero--journal{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);
  gap:54px;
  align-items:center;
  max-width:none;
  margin:48px 0 54px;
}

.journal-hero__copy{
  padding:26px 0;
}

.journal-hero__visual{
  position:relative;
  min-height:360px;
  margin:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:#15132d;
  box-shadow:0 28px 70px rgba(0,0,0,.34);
}

.journal-hero__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 32%,rgba(5,8,23,.18) 55%,rgba(5,8,23,.96));
}

.journal-hero__visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:62% center;
}

.journal-hero__visual figcaption{
  position:absolute;
  z-index:1;
  right:28px;
  bottom:26px;
  left:28px;
  display:grid;
  gap:7px;
}

.journal-hero__visual figcaption span{
  color:#ff9fe6;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.journal-hero__visual figcaption strong{
  max-width:420px;
  color:#fff;
  font-size:1.3rem;
  line-height:1.2;
}

.editorial-hero h1,
.article-page h1{
  margin:0;
  color:#fff;
  font-size:clamp(2.65rem, 6vw, 5.3rem);
  line-height:.96;
  letter-spacing:0;
}

.editorial-hero p:not(.kicker),
.article-intro{
  max-width:780px;
  margin:20px 0 0;
  color:rgba(255,255,255,.78);
  font-size:1.13rem;
  line-height:1.68;
}

.article-list,
.sign-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.journal-section{
  margin-top:46px;
}

.journal-section__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.journal-section__head .kicker{
  margin-bottom:7px;
}

.journal-section__head h2{
  margin:0;
  color:#fff;
  font-size:2rem;
  line-height:1.08;
}

.journal-section__head>p{
  max-width:430px;
  margin:0;
  color:rgba(255,255,255,.65);
  line-height:1.55;
  text-align:right;
}

.journal-lead-grid{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr);
  gap:18px;
}

.article-card--featured{
  grid-row:span 2;
  min-height:430px;
  padding:34px;
  background:
    linear-gradient(145deg,rgba(89,51,155,.42),rgba(25,22,56,.82)),
    rgba(255,255,255,.06);
}

.article-card--selection{
  min-height:206px;
}

.article-card--compact{
  min-height:250px;
}

.article-card--featured,
.article-card--selection,
.article-card--compact{
  position:relative;
  display:flex;
  gap:22px;
  overflow:hidden;
  border-radius:8px;
  transition:border-color .2s ease,transform .2s ease,background .2s ease;
}

.article-card--featured:hover,
.article-card--selection:hover,
.article-card--compact:hover{
  transform:translateY(-3px);
  border-color:rgba(255,159,230,.42);
}

.article-card__number{
  flex:0 0 auto;
  color:rgba(255,255,255,.28);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
}

.article-card__content{
  display:flex;
  min-width:0;
  flex:1;
  flex-direction:column;
}

.article-card--featured h2{
  max-width:560px;
  margin-top:8px;
  font-size:clamp(2rem,3vw,3.25rem);
  line-height:1.02;
}

.article-card--featured p:not(.article-meta){
  max-width:610px;
  font-size:1.04rem;
}

.article-card__content .article-link{
  margin-top:auto;
  padding-top:18px;
}

.article-card__content .article-link span{
  margin-left:8px;
  transition:transform .2s ease;
}

.article-card:hover .article-link span{
  transform:translateX(4px);
}

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

.article-card,
.sign-card,
.editorial-crosslinks article,
.article-page,
.article-note,
.article-cta{
  border:1px solid rgba(255,255,255,.13);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.045));
  box-shadow:0 24px 72px rgba(0,0,0,.24);
  backdrop-filter:blur(18px);
}

.article-card,
.sign-card{
  padding:26px;
}

.article-meta{
  margin:0 0 12px;
  color:#ff9fe6;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  font-weight:900;
}

.article-card h2,
.sign-card h2{
  margin:0 0 12px;
  color:#fff;
  font-size:1.55rem;
  line-height:1.1;
}

.article-card h2 a,
.sign-card h2 a{
  color:inherit;
  text-decoration:none;
}

.article-card p:not(.article-meta),
.sign-card p,
.editorial-crosslinks p,
.article-page p,
.article-page li{
  color:rgba(255,255,255,.76);
  line-height:1.7;
}

.article-link{
  display:inline-flex;
  margin-top:10px;
  color:#ffd1ef;
  font-weight:900;
  text-decoration:none;
}

.sign-card > span{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  margin-bottom:16px;
  border-radius:18px;
  color:#ffd6ad;
  background:rgba(255,255,255,.08);
}

.editorial-crosslinks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}

.editorial-page .editorial-crosslinks{
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
}

.editorial-page .editorial-crosslinks article{
  border-radius:8px;
  background:rgba(255,255,255,.055);
  box-shadow:none;
}

.editorial-crosslinks article,
.article-cta{
  padding:28px;
}

.editorial-crosslinks h2,
.article-page h2,
.article-cta h2{
  margin:0 0 12px;
  color:#fff;
  font-size:1.6rem;
  line-height:1.12;
}

.article-page{
  max-width:900px;
  margin:54px auto 0;
  padding:38px;
}

.article-page section{
  margin-top:30px;
}

.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:26px;
  color:rgba(255,255,255,.62);
  font-weight:800;
}

.breadcrumb a{
  color:#ffd1ef;
  text-decoration:none;
}

.article-note{
  padding:22px;
  background:linear-gradient(135deg,rgba(182,60,255,.14),rgba(255,79,164,.10));
}

.article-note strong,
.article-note h2{
  color:#ffd6ad;
}

.article-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  margin-top:34px;
}

.article-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.small-disclaimer{
  margin-top:24px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:18px;
  background:rgba(255,255,255,.055);
}

@media (max-width:820px){
  .editorial-shell{
    width:min(100% - 28px, 560px);
    padding-top:18px;
  }

  .editorial-hero{
    margin-top:42px;
  }

  .editorial-hero--journal{
    grid-template-columns:1fr;
    gap:22px;
    margin:34px 0 38px;
  }

  .journal-hero__copy{
    padding:0;
  }

  .journal-hero__visual{
    min-height:250px;
  }

  .journal-section{
    margin-top:34px;
  }

  .journal-section__head{
    display:block;
  }

  .journal-section__head h2{
    font-size:1.65rem;
  }

  .journal-section__head>p{
    margin-top:10px;
    text-align:left;
  }

  .journal-lead-grid,
  .article-list--journal{
    grid-template-columns:1fr;
  }

  .article-card--featured,
  .article-card--selection,
  .article-card--compact{
    min-height:0;
    padding:24px;
  }

  .article-card--featured{
    grid-row:auto;
  }

  .article-card--featured h2{
    font-size:1.8rem;
  }

  .article-list,
  .sign-grid,
  .editorial-crosslinks,
  .article-cta{
    grid-template-columns:1fr;
  }

  .article-page{
    margin-top:34px;
    padding:24px;
    border-radius:24px;
  }

  .article-cta__actions{
    justify-content:stretch;
  }

  .article-cta__actions .btn{
    width:100%;
  }
}
