    /* ── STORIES ── */
    .stories { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
    .story { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
    .story img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .5s; }
    .story:hover img { transform: scale(1.05); }
    .story-over {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px 24px;
      background: linear-gradient(to top, rgba(10,15,44,.84) 0%, transparent 100%);
    }
    .story-tag {
      display: inline-block; background: var(--brand); color: #fff;
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: .8px; padding: 4px 11px; border-radius: 980px; margin-bottom: 9px;
    }
    .story-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
