/* ===================================================================
   ABOUT SECTION - Narrative Story Layout
   =================================================================== */

.about-section-modern {
    padding: 4.8rem 0;
    background: var(--color-background);
}

.about-title-large {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.about-narrative-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-story-card {
    padding: 1.2rem 1.25rem;
    border-radius: 14px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.about-story-title {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--color-text);
    font-weight: 750;
}

.about-story-text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

[data-theme="dark"] .about-story-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

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