﻿.about-section-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

    .about-section-header h2 {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
    }

    .about-section-header p {
        margin-bottom: 1rem;
        color: #495057;
        line-height: 1.8;
    }

        .about-section-header p:last-child {
            margin-bottom: 0;
        }

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-value {
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    background: #ffffff;
}

    .about-value h3 {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
        font-weight: 800;
    }

@media (max-width: 767.98px) {

    .about-values {
        grid-template-columns: 1fr;
    }
}

.about-team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-team-member {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    background: #ffffff;
}

    .about-team-member p {
        margin: 0;
        color: #495057;
        line-height: 1.7;
    }

    .about-team-member h3 {
        margin-bottom: 0.25rem;
        font-size: 1.3rem;
        font-weight: 900;
    }

.about-team-role {
    margin-bottom: 1rem;
    color: #495057;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .about-team {
        grid-template-columns: 1fr;
    }
}

.about-cta {
    text-align: center;
}

    .about-cta p {
        max-width: 700px;
        margin: 0 auto 1.5rem;
    }

.about-team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid #f1f3f5;
}

.about-community-photo {
    margin: 0;
}

    .about-community-photo img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center;
        border-radius: 24px;
        display: block;
    }

@media (max-width: 767.98px) {

    .about-community-photo img {
        height: auto;
    }
}

.about-gallery img {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
}

