/* ============================================================
   Stories page — vsto-*
   Navy: #012255  |  Yellow: #FAAF16
   ============================================================ */

.vsto-eyebrow {
    display: block;
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #012255;
    margin-bottom: 12px;
}
.vsto-eyebrow--accent { color: #FAAF16; }

.vsto .victor-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.vsto .victor-btn--outline-white:hover,
.vsto .victor-btn--outline-white:focus-visible {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ══ 1. HERO — navy split ══ */
.vsto-hero {
    background: #012255;
    color: #fff;
    padding: 72px 0;
}
.vsto-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.vsto-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
}
.vsto-hero__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 32px;
    max-width: 520px;
}
.vsto-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vsto-hero__photo img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

/* ══ 2. LIBRARY — yellow ══ */
.vsto-library {
    background: #FAAF16;
    padding: 64px 0;
}
.vsto-library__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.vsto-library .vsto-eyebrow { color: #012255; opacity: 0.75; }
.vsto-library__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: #012255;
    margin: 0 0 12px;
}
.vsto-library__body {
    font-size: var(--victor-fs-md);
    line-height: 1.65;
    color: #012255;
    opacity: 0.85;
    margin: 0;
}
.vsto-search {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(1,34,85,0.08);
}
.vsto-search input {
    flex: 1;
    /* !important: GeneratePress paints inputs light gray with a border */
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: var(--victor-fs-sm);
    color: #012255;
    outline: none;
    min-width: 0;
}
.vsto-search input::placeholder { color: #a9b3c4; }
/* Oval navy button, bigger arrow */
.vsto-search button {
    flex-shrink: 0;
    width: 68px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: #012255;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}
.vsto-search button:hover { opacity: 0.85; }

.vsto-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.vsto-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--victor-radius-lg);
    background: #fff;
    color: #012255;
    font-size: var(--victor-fs-sm);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.vsto-pill:hover { background: #012255; color: #fff; }
.vsto-pill--active { background: #012255; color: #fff; }
.vsto-library__note {
    font-size: var(--victor-fs-xs);
    color: #012255;
    opacity: 0.65;
    margin: 0;
}

/* ══ 3. STORIES GRID ══ */
.vsto-grid {
    background: #fff;
    padding: 80px 0;
}
.vsto-grid__title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: #012255;
    margin: 0 0 12px;
}
.vsto-grid__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: #3a4a6b;
    max-width: 640px;
    margin: 0 0 44px;
}
.vsto-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vsto-card {
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: box-shadow 0.18s, transform 0.18s;
}
.vsto-card:hover {
    box-shadow: 0 8px 24px rgba(1, 34, 85, 0.10);
    transform: translateY(-2px);
}
.vsto-card__media { display: block; }
.vsto-card__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.vsto-card__media-placeholder {
    display: block;
    width: 100%;
    height: 200px;
    background: #e8ecf3;
}
.vsto-card__content {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.vsto-card__cat {
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a95a8;
    margin: 0;
}
.vsto-card__title {
    font-size: var(--victor-fs-md);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}
.vsto-card__title a {
    color: #012255;
    text-decoration: none;
}
.vsto-card__title a:hover { text-decoration: underline; }
.vsto-card__excerpt {
    font-size: var(--victor-fs-sm);
    line-height: 1.6;
    color: #3a4a6b;
    margin: 0;
    flex: 1;
}
.vsto-card__link {
    font-size: var(--victor-fs-sm);
    font-weight: 700;
    color: #012255;
    text-decoration: none;
    margin-top: 4px;
}
.vsto-card__link:hover { text-decoration: underline; }
.vsto-grid__more {
    text-align: center;
    margin-top: 44px;
}
.vsto-grid__empty {
    font-size: var(--victor-fs-base);
    color: #3a4a6b;
    background: #f7f8fc;
    border: 1px solid #e5e9f0;
    border-radius: 10px;
    padding: 28px;
    text-align: center;
}

/* ══ 4. PRACTICAL RESOURCES — light split ══ */
.vsto-res {
    background: #f7f8fc;
    padding: 80px 0;
}
.vsto-res__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.vsto-res__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: #012255;
    margin: 0 0 14px;
}
.vsto-res__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: #3a4a6b;
    margin: 0;
}
.vsto-res__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vsto-res__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 10px;
    padding: 20px 26px;
    text-decoration: none;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.vsto-res__row:hover {
    border-color: #012255;
    box-shadow: 0 4px 14px rgba(1, 34, 85, 0.08);
}
.vsto-res__row-label {
    display: block;
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a95a8;
    margin-bottom: 4px;
}
.vsto-res__row-title {
    display: block;
    font-size: var(--victor-fs-base);
    font-weight: 800;
    color: #012255;
    line-height: 1.35;
}
.vsto-res__row-arrow {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #012255;
    font-weight: 700;
}

/* ══ 5. WHY — navy split ══ */
.vsto-why {
    background: #012255;
    padding: 80px 0;
    color: #fff;
}
.vsto-why__inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.vsto-why__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
}
.vsto-why__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0 0 28px;
    max-width: 460px;
}
.vsto-why__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vsto-why__card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 26px 32px;
}
/* Mockup: plain small navy number, no chip */
.vsto-why__card-num {
    flex-shrink: 0;
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    color: #012255;
    line-height: 1;
    margin-top: 0.45em; /* optically aligns with the title */
}
.vsto-why__card-title {
    font-size: var(--victor-fs-md);
    font-weight: 800;
    color: #012255;
    margin: 0 0 4px;
}
.vsto-why__card-desc {
    font-size: var(--victor-fs-sm);
    line-height: 1.55;
    color: #3a4a6b;
    margin: 0;
}

/* ══ 6. FINAL CTA ══ */
.vsto-cta {
    background: #fff;
    padding: 64px 0 80px;
}
.vsto-cta__card {
    background: #012255;
    border-radius: 16px;
    padding: 56px 64px;
    text-align: center;
    color: #fff;
}
.vsto-cta__card .vsto-eyebrow--accent { text-align: center; }
.vsto-cta__title {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    margin: 8px auto 14px;
    max-width: 720px;
}
.vsto-cta__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto 32px;
}
.vsto-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══ Responsive ══ */
@media (max-width: 960px) {
    .vsto-hero__inner,
    .vsto-library__inner,
    .vsto-res__inner,
    .vsto-why__inner       { grid-template-columns: 1fr; }
    .vsto-hero__photo      { order: -1; }
    .vsto-cards            { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .vsto-cards            { grid-template-columns: 1fr; }
    .vsto-cta__card        { padding: 40px 24px; }
    .vsto-res__row         { padding: 16px 20px; }
}
