.blog-hero { padding-block: 40px clamp(88px, 11vw, 150px); }

.blog-page-pill {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: clamp(68px, 10vw, 130px);
    border-radius: 999px;
    background: var(--surface);
    font-size: 16px;
    font-weight: 500;
}

.blog-hero h1 { max-width: 13ch; margin-top: 16px; }
.blog-hero .lead { max-width: 47ch; margin-top: 24px; }

.blog-featured { padding-bottom: clamp(88px, 11vw, 148px); }
.blog-section-head h2 { max-width: 18ch; margin-top: 14px; }

.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
    margin-top: clamp(36px, 5vw, 64px);
}

.story-card {
    overflow: hidden;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: var(--bg);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.story-card:hover { transform: translateY(-3px); box-shadow: var(--lift-2); }
.story-visual { overflow: hidden; aspect-ratio: 4 / 3; }
.story-visual-mint { position: relative; padding: 30px; background: color-mix(in srgb, var(--mint) 17%, var(--bg)); }
.story-visual-mint span { position: absolute; top: -20px; right: 20px; color: color-mix(in srgb, var(--mint) 26%, transparent); font-size: 156px; font-weight: 600; line-height: 1; }
.story-visual-mint p { position: absolute; right: 30px; bottom: 28px; left: 30px; font-size: clamp(28px, 3vw, 40px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.story-visual-reso { background: var(--ink); }
.story-visual-reso img { width: 100%; height: 100%; object-fit: cover; }
.story-visual-alder { display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--ink); color: var(--bg); }
.story-visual-alder > p { font-size: clamp(27px, 2.7vw, 38px); font-weight: 600; line-height: 1.03; letter-spacing: -.04em; }
.alder-route { display: flex; align-items: center; gap: 8px; color: color-mix(in srgb, var(--bg) 72%, transparent); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.alder-route i { height: 1px; flex: 1; background: color-mix(in srgb, var(--bg) 22%, transparent); }
.story-copy { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 3vw, 34px); }
.story-copy > span { color: var(--ink-3); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.story-copy h3 { margin-top: 24px; font-size: clamp(24px, 2.7vw, 34px); font-weight: 600; line-height: 1.12; letter-spacing: -.035em; }
.story-copy p { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.story-copy b { margin-top: auto; padding-top: 28px; font-size: 13px; }

.note-list { margin-top: clamp(36px, 5vw, 58px); }
.note-row { display: grid; grid-template-columns: 180px minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); transition: padding-inline .25s var(--ease); }
.note-row:hover { padding-inline: 10px; }
.note-row > span { color: var(--ink-3); font-size: 12px; font-weight: 500; }
.note-row h3 { font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.note-row p { margin-top: 4px; color: var(--ink-3); font-size: 13px; }
.note-row b { color: var(--ink-3); font-size: 12px; font-weight: 500; white-space: nowrap; }

.manual-panel { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 48px; align-items: end; }
.manual-panel h2 { margin-top: 14px; }
.manual-panel .lead { max-width: 44ch; margin-top: 20px; }

@media (max-width: 820px) {
    .blog-feature-grid,
    .manual-panel { grid-template-columns: 1fr; }

    .story-visual { aspect-ratio: 16 / 10; }
}

@media (max-width: 620px) {
    .blog-page-pill { min-height: 54px; }
    .note-row { grid-template-columns: minmax(0,1fr) auto; gap: 8px 16px; }
    .note-row > span { grid-column: 1 / -1; }
}
