/* ── About Page Layout ─────────────────────────────────────── */

.about-wrap {
    max-width: 70vw;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
}

.about-header h1 {
    margin-bottom: 16px;
}

.about-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ── Card Grid ────────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-card h2 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: #000;
}

.about-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* ── Lists in cards ───────────────────────────────────────── */

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li strong {
    color: #000;
}

/* ── Values in card ───────────────────────────────────────── */

.about-value {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.about-value:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-value h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.about-value p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* ── Meet the Team section ────────────────────────────────── */

.section--gray .about-wrap h2 {
    margin-bottom: 16px;
}

.section--gray .about-wrap p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Button outline variant ───────────────────────────────── */

.btn--outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #000;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn--outline:hover {
    background: #000;
    color: #fff;
}

/* ── CTA section spacing (reduce gap below Meet the Team) ─── */

.page-about .cta-section {
    margin-top: -20px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1200px) {
    .about-wrap {
        max-width: 85vw;
    }
}

@media (max-width: 768px) {
    .about-wrap {
        max-width: 100%;
        padding: 0 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card {
        padding: 24px;
    }
}
