.v2-story-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 36px;
    align-items: start;
}

.v2-story-overview-copy .v2-section-subtitle {
    margin-bottom: 28px;
}

.v2-story-principle-list {
    display: grid;
    gap: 18px;
}

.v2-story-principle-item {
    padding: 18px 20px;
    border-left: 3px solid var(--v2-blue);
    background: rgba(255, 255, 255, 0.03);
}

.v2-story-principle-item:nth-child(2) {
    border-left-color: var(--v2-green);
}

.v2-story-principle-item:nth-child(3) {
    border-left-color: var(--v2-purple);
}

.v2-story-principle-item h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.v2-story-principle-item p {
    margin-bottom: 0;
}

.v2-story-overview-figure-wrap {
    display: grid;
    gap: 18px;
}

.v2-story-overview-figure {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.v2-story-overview-figure img {
    width: 100%;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
}

.v2-story-stat-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v2-story-stat-card {
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.v2-story-stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--v2-font-head);
    font-size: 1.35rem;
    line-height: 1;
}

.v2-story-stat-card span {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--v2-gray-400);
}

.v2-story-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.v2-story-timeline-item {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.v2-story-timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--v2-green), var(--v2-purple), var(--v2-blue));
}

.v2-story-timeline-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-green);
}

.v2-story-timeline-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.v2-story-timeline-item p {
    margin-bottom: 0;
}

.v2-story-dual-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
}

.v2-story-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.v2-story-panel--quote p + p {
    margin-top: 16px;
}

.v2-story-principle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.v2-story-principle-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-story-principle-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.v2-story-principle-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.v2-story-cta {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(128, 183, 55, 0.08), transparent 34%),
        linear-gradient(225deg, rgba(17, 139, 189, 0.08), transparent 32%),
        rgba(255, 255, 255, 0.03);
}

.v2-story-cta .v2-section-subtitle {
    margin-bottom: 26px;
}

.v2-story-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
}

@media (max-width: 991px) {
    .v2-story-overview-grid,
    .v2-story-dual-grid,
    .v2-story-timeline {
        grid-template-columns: 1fr;
    }

    .v2-story-stat-stack,
    .v2-story-principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .v2-story-panel,
    .v2-story-cta,
    .v2-story-timeline-item,
    .v2-story-principle-item,
    .v2-story-principle-card,
    .v2-story-stat-card {
        padding: 20px 18px;
    }

    .v2-story-stat-stack,
    .v2-story-principle-grid {
        grid-template-columns: 1fr;
    }

    .v2-story-overview-figure img {
        aspect-ratio: 4 / 4;
    }
}
