/* ================================
   ABOUT US PAGE STYLES
   ================================ */

.about-us-page {
    padding-bottom: 80px;
}

/* Hero Section */
/* Hero Section */
.about-hero-section,
.about-hero {
    padding: 0px 0 60px;
}

.about-hero-section .container-1280,
.about-hero .container-1280 {
    max-width: 846px;
}

.about-page-heading,
.about-heading {
    text-align: left;
    padding-bottom: 16px;
    font-family: var(--font-logo);
    font-size: 68px;
    font-weight: 700;
    line-height: 64px;
    color: #FFFFFF;
}

/* Content Section */
.about-content {
    margin-top: 24px;
}

.about-paragraph {
    margin-bottom: 30px;
}

.about-paragraph p,
.about-content p {
    font-family: var(--font-menu);
    font-size: 22px;
    line-height: 136%;
    color: #E7E7E7;
    margin-bottom: 30px;
}

.about-intro p {
    font-size: 22px;
    line-height: 136%;
}

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

/* Team Section */
.team-section,
.about-team {
    padding: 60px 0 0;
}

.team-section .container-1280,
.about-team .container-1280 {
    max-width: 1280px;
}

.team-section .section-heading,
.about-team .section-heading {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-logo);
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member,
.team-member-card {
    text-align: left;
}

.member-photo {
    width: 100%;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 21px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-name {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.member-position {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FF7518;
    margin: 0;
}

/* Responsive */
@media (max-width: 1280px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {


    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .member-photo {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-us-page {
        padding-bottom: 60px;
    }



    .about-hero .container-1280 {
        padding: 0px;
    }

    .about-intro p {
        font-size: 18px;
        line-height: 26px;
    }

    .about-paragraph p {
        font-size: 16px;
        line-height: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .member-photo {
        height: 320px;
    }

    .member-name {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .member-position {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .member-photo {
        height: 420px;
        max-width: 100%;
    }
}