.stage-index-shell {
    padding: 28px 0 46px;
    background: linear-gradient(180deg, #fbfaf6 0%, #f6f3ec 100%);
}

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

.stage-index-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid #e5dfd3;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.stage-index-top {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 14px;
}

.stage-index-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #efede7;
    color: #263036;
}

.stage-index-kicker {
    color: #6a726d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stage-index-card h2 {
    margin: 4px 0 0;
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.stage-index-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.stage-index-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: #394043;
}

.stage-index-link {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 860px) {
    .stage-index-grid {
        grid-template-columns: 1fr;
    }
}
