/* ==========================================================================
   ABOUT PAGE — Zeta IT Consulting
   Page-specific styles for the about page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. STORY SECTION
   -------------------------------------------------------------------------- */

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.story-content h2 {
    margin-bottom: var(--space-6);
}

.story-content p {
    margin-bottom: var(--space-5);
}

.story-lead {
    font-size: var(--text-xl);
    color: var(--color-text);
    line-height: var(--leading-normal);
}

.story-aside {
    position: sticky;
    top: 6rem;
}

.story-quote {
    border-left: 3px solid var(--color-accent);
    padding-left: var(--space-6);
}

.story-quote p {
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-text);
    line-height: var(--leading-snug);
}


/* --------------------------------------------------------------------------
   2. APPROACH SECTION
   -------------------------------------------------------------------------- */

.approach-card {
    text-align: center;
}

.approach-card h3 {
    margin-bottom: var(--space-3);
}

.approach-card p {
    font-size: var(--text-base);
}

.approach-step {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-4);
}


/* --------------------------------------------------------------------------
   3. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 48em) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .story-aside {
        position: static;
    }
}

@media (max-width: 40em) {
    .story-quote p {
        font-size: var(--text-xl);
    }
}
