/* ===================================================
   ABOUT PAGE — vivelead.com/about/
   Matches legal-pages.css + contact-page.css system
   =================================================== */

.vl-about-page {
    background: #ffffff;
    color: #334155;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
}

/* ---------- HERO (matches legal/contact light-gradient pattern) ---------- */
.vl-about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 64px 0 48px;
    border-bottom: 1px solid #e2e8f0;
}

.vl-about-hero__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.vl-about-hero__breadcrumb {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.vl-about-hero__breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.vl-about-hero__breadcrumb a:hover { color: #4051B5; }

.vl-about-hero__breadcrumb span { color: #cbd5e1; }

.vl-about-hero__breadcrumb-current { color: #475569; font-weight: 500; }

.vl-about-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

.vl-about-hero__subtitle {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
}

/* ---------- CONTENT ---------- */
.vl-about-content {
    padding: 56px 0 80px;
}

.vl-about-content__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 16px;
    color: #334155;
}

/* Headings */
.vl-about-content__inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 44px 0 14px;
}

.vl-about-content__inner h2:first-of-type {
    margin-top: 0;
}

.vl-about-content__inner h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 32px 0 10px;
}

/* Paragraphs */
.vl-about-content__inner p {
    margin: 0 0 14px;
    color: #475569;
}

.vl-about-content__inner strong {
    color: #1e293b;
    font-weight: 600;
}

/* Lists */
.vl-about-content__inner ul,
.vl-about-content__inner ol {
    padding-left: 22px;
    margin: 0 0 18px;
}

.vl-about-content__inner li {
    margin-bottom: 6px;
    color: #475569;
}

/* Links */
.vl-about-content__inner a {
    color: #4051B5;
    text-decoration: none;
    border-bottom: 1px solid rgba(64, 81, 181, 0.25);
    transition: border-color 0.2s, color 0.2s;
}

.vl-about-content__inner a:hover {
    color: #303f9f;
    border-bottom-color: #303f9f;
}

/* Footer-style CTA links at bottom of page */
.vl-about-content__inner p:last-child a {
    display: inline-block;
    margin-right: 4px;
}

/* ---------- TEAM GRID ---------- */
.vl-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0 36px;
}

@media (max-width: 768px) {
    .vl-team-grid {
        grid-template-columns: 1fr;
    }
}

.vl-team-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.vl-team-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.vl-team-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.vl-team-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #1e293b;
}

.vl-team-card h3 a {
    color: #1e293b !important;
    border-bottom: none !important;
}

.vl-team-card h3 a:hover { color: #4051B5 !important; }

.vl-team-card__role {
    font-size: 13px;
    color: #4051B5;
    font-weight: 500;
    margin: 0 0 10px !important;
    letter-spacing: 0.01em;
}

.vl-team-card p:last-child {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
    .vl-about-hero {
        padding: 48px 0 36px;
    }

    .vl-about-hero__title {
        font-size: 28px;
    }

    .vl-about-hero__subtitle {
        font-size: 16px;
    }

    .vl-about-content {
        padding: 40px 0 60px;
    }

    .vl-about-content__inner h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .vl-team-grid {
        gap: 14px;
    }

    .vl-team-card {
        padding: 20px 16px;
    }

    .vl-team-card img {
        width: 84px;
        height: 84px;
    }
}
