:root {
    --item-h: 120px;
    --img-h: 480px;
    --viewport-h: 600px;
    --bg: #f5f5f5;
    --card: #f7f7f7;
  }
  * { box-sizing: border-box; }
#FeatureEditorial .header__title__lines__item--below{
  font-weight: bold;
}
#FeatureEditorial .content--large .content__desc{
  max-width: 800px;
}
#FeatureEditorial .adjacent__title__lines__item--primary{
  text-transform: none;
}
  .card {
    margin:auto;
    position: relative;
    width: min(100%, 1100px);
    height: var(--viewport-h);
    background: var(--card);
    border-radius: 32px;
    border: 1px solid #d4d4d4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    height: 100%;
    margin-left: 48px; /* account for sidebar */
    position: relative;
    z-index: 1;
  }
  .sidebar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 48px;
    border-right: 1px solid #d4d4d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: rgba(247,247,247,0.8);
    backdrop-filter: blur(6px);
    z-index: 2;
  }
  .sidebar span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
  }
  .sidebar .label-strong { color: #222; }

  .text-col, .img-col { position: relative; overflow: hidden; }
  .text-stack {
    position: absolute;
    width: 100%;
    padding: 0 32px;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  }
  .text-item {
    height: var(--item-h);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.35s, transform 0.35s;
  }
  .text-item h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    transition: color 0.35s;
  }
  .meta {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: #666;
    font-weight: 600;
    align-items: center;
    line-height:1.1
  }
  .dot { width: 6px; height: 6px; background: #888; border-radius: 999px; }
  .text-item.inactive { opacity: 0.25; transform: translateX(-10px) scale(0.97); }
  .text-item.active h2 { color: #000; }

  .fade-top, .fade-bottom {
    position: absolute; left: 0; right: 0; height: 96px;
    pointer-events: none; z-index: 3;
  }
  .fade-top { top: 0; background: linear-gradient(to bottom, var(--card), transparent); }
  .fade-bottom { bottom: 0; background: linear-gradient(to top, var(--card), transparent); }

  .img-stack {
    position: absolute;
    width: 100%;
    right: 0;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  }
  .img-wrap {
    position: absolute;
    width: 100%;
    height: var(--img-h);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
  }
  .img-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
    transform: scale(0.9);
    filter: grayscale(100%);
    opacity: 0.45;
    transition: transform 0.45s, opacity 0.45s, filter 0.45s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    mix-blend-mode: multiply;
  }
  .img-card.active {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0%);
  }

  .controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 12px;
    z-index: 3;
  }
  .btn {
    border: none;
    outline: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: grid;
    place-items: center;
    transition: transform 0.15s ease, background 0.2s;
  }
  .btn:hover { background: #fff; transform: translateY(-2px) scale(1.05); }
  .btn:active { transform: scale(0.95); }
  .arrow {
    display: block;
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  .arrow.up { border-bottom: 10px solid #222; }
  .arrow.down { border-top: 10px solid #222; }

  .corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .corner { position: absolute; width: 64px; height: 64px; border: 1px solid #d4d4d4; }
  .corner.tr { top: 16px; right: 16px; border-bottom: none; border-left: none; border-radius: 0 24px 0 0; }
  .corner.bl { bottom: 16px; left: 80px; border-top: none; border-right: none; border-radius: 0 0 0 24px; }

  .bg-blur {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.3; overflow: hidden;
  }
  .bg-blur .blob {
    position: absolute;
    width: 120%; height: 120%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
  }
@media only screen and (max-width: 767px) {
:root {
    --item-h: 120px;
    --img-h: 360px;
  --viewport-h: 500px;}
.grid{margin-left: 0;}
.img-wrap {padding:0}
.sidebar{width:100%; height:48px;   flex-direction: row;}
.sidebar span{        writing-mode: unset;    transform: none;}
.text-item h2{font-size:16px}
.text-stack {
  padding: 0 10px;}
.sidebar .sidebar-index{padding:10px}
#FeatureEditorial .adjacent h3{
  margin-top: 20px;
}
}