    :root {
      --ink: #17234f;
      --muted: #6f7896;
      --line: #dfe3ed;
      --page: #f5f6f9;
    }
    * { box-sizing: border-box; }
    html { background: var(--page); scroll-behavior: smooth; }
    .main {
      margin: 0;
      background:
        radial-gradient(circle at 12% 4%, rgba(29,53,121,.06), transparent 26rem),
        var(--page);
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
    }
    button { font: inherit; }
    .gallery {
      width: min(1480px, 100%);
      margin: 0 auto;
      padding: clamp(28px,5vw,76px) clamp(16px,4vw,56px) 80px;
    }
    .month + .month { margin-top: clamp(64px,9vw,120px); }
    .month-heading {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }
    .month-heading h2 {
      margin: 0;
      font-size: clamp(1.55rem,3vw,2.3rem);
      line-height: 1;
      letter-spacing: -.04em;
    }
    .month-heading span {
      color: var(--muted);
      font-size: .83rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: clamp(18px,2.5vw,34px);
      align-items: start;
    }
    .poster-card {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 5px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(26,36,75,.1);
      cursor: zoom-in;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .poster-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .poster-card:hover,
    .poster-card:focus-visible {
      z-index: 1;
      transform: translateY(-4px);
      box-shadow: 0 18px 46px rgba(26,36,75,.18);
    }
    .poster-card:focus-visible {
      outline: 4px solid rgba(43,79,177,.45);
      outline-offset: 4px;
    }
    .open-hint {
      position: absolute;
      right: 14px;
      bottom: 14px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(11,17,45,.88);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      opacity: 0;
      transform: translateY(5px);
      transition: opacity .16s ease, transform .16s ease;
    }
    .poster-card:hover .open-hint,
    .poster-card:focus-visible .open-hint {
      opacity: 1;
      transform: translateY(0);
    }
    .modal {
      position: fixed;
      z-index: 100;
      inset: 0;
      display: none;
      grid-template-columns: 72px minmax(0,1fr) 72px;
      align-items: center;
      padding: 24px;
      background: rgba(5,8,22,.94);
      backdrop-filter: blur(12px);
    }
    .modal.open { display: grid; animation: fade-in .16s ease-out; }
    .modal-stage {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: calc(100dvh - 48px);
      overflow: hidden;
    }

    .modal-stage img {
      display: block;
      width: auto;
      height: auto;
      max-width: calc(100vw - 250px);
      max-height: calc(100dvh - 180px);
      object-fit: contain;
    }
    .modal-close, .modal-nav {
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      cursor: pointer;
      transition: background .15s ease, transform .15s ease;
    }
    .modal-close:hover, .modal-close:focus-visible,
    .modal-nav:hover, .modal-nav:focus-visible {
      background: rgba(255,255,255,.22);
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    .modal-close {
      position: fixed;
      z-index: 2;
      top: 110px;
      right: 18px;
      width: 48px;
      height: 48px;
      font-size: 2rem;
      line-height: 1;
    }
    .modal-nav {
      width: 52px;
      height: 52px;
      justify-self: center;
      font-size: 2.3rem;
      line-height: .8;
      z-index:5;
    }
    .modal-nav:active, .modal-close:active { transform: scale(.94); }
    .modal-count {
      position: absolute;
      bottom: 12px;
      left: 50%;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(5,8,22,.78);
      color: #fff;
      font-size: .8rem;
      font-variant-numeric: tabular-nums;
      transform: translateX(-50%);
    }
    @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
    @media (max-width: 900px) {
      .poster-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    }
    @media (max-width: 580px) {
      .gallery { padding-inline: 14px; }
      .poster-grid { grid-template-columns: 1fr; gap: 20px; }
      .month-heading { margin-bottom: 16px; }
      .open-hint { display: none; }
      .modal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0,1fr) 58px;
        gap: 8px;
        padding: 70px 12px 10px;
      }
      .modal-stage { grid-column: 1/-1; grid-row: 1; height: 100%; }
      .modal-previous, .modal-next { grid-row: 2; }
      .modal-nav { width: 100%; height: 48px; border-radius: 12px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
      }
    }
@media (max-width: 580px) {
  .modal-stage img {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 150px);
  }
}

article.intro.small p {display:none;}


