/* ============================================================
   About Page Styles
   ============================================================ */

.page-banner {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    padding: var(--space-12) 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.page-banner .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    max-width: 700px;
    margin: 0 auto;
}

/* ── Story Section ───────────────────────────────────────── */

.about-story .story-highlight {
    background: var(--color-off-white);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-6) 0;
}

.about-story .story-highlight p {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0;
}

/* ── Team Section ────────────────────────────────────────── */

.team-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-photo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-bottom: var(--space-4);
    border: 3px solid var(--color-accent);
}

.team-card .team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--color-white);
    font-size: var(--text-3xl);
}

.team-card h5 {
    margin-bottom: var(--space-1);
    color: var(--color-primary);
}

.team-card .team-title {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
}

.team-card p {
    font-size: var(--text-sm);
}

/* ── Advantage Grid ──────────────────────────────────────── */

.advantage-card {
    text-align: center;
    padding: var(--space-8);
}

.advantage-card i {
    font-size: var(--text-4xl);
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.advantage-card h5 {
    margin-bottom: var(--space-2);
}
