.about-hero-section {
    background: var(--white);
}

.about-top-bar {
    background: var(--teal);
    padding: 18px 0 14px;
}

.about-back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: clamp(1rem, 1.1vw, 1.3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.about-back-arrow {
    font-size: 1.2em;
    line-height: 1;
}

.about-main-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.6rem, 5vw, 5.1rem);
    font-weight: 700;
    line-height: .95;
}

.about-info-box {
    padding: 0;
    background: var(--white);
}

.about-info-box .container {
    padding-top: 0;
    padding-bottom: 0;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    background: var(--white);
    padding: 26px 22px 28px;
}

.about-role {
    margin: 0 0 22px;
    color: var(--teal-deep);
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-cred-line {
    position: relative;
    padding-left: 58px;
    color: var(--teal-deep);
    font-size: clamp(1rem, 1.25vw, 1.7rem);
    font-weight: 700;
    line-height: 1.05;
}

.about-cred-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 4px;
    background: var(--teal);
    border-radius: 999px;
}

.about-info-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.about-info-side p {
    margin: 0;
    color: var(--teal-deep);
    font-size: clamp(1rem, 1.15vw, 1.5rem);
    font-weight: 700;
    line-height: 1.05;
}

.about-intro-strip {
    background: var(--teal);
    padding: 10px 0;
}

.about-intro-strip p {
    margin: 0;
    color: var(--white);
    font-size: clamp(1rem, 1.35vw, 1.65rem);
    font-weight: 700;
    line-height: 1.05;
}

.about-gallery {
    background: var(--white);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.about-gallery-item img {
    display: block;
    width: 100%;
    height: clamp(280px, 34vw, 320px);
    object-fit: contain;
    object-position: 50% 50%;
}

.about-page-content-section {
    padding: clamp(28px, 4vw, 52px) 0 0;
    background: var(--white);
}


/* Content Section */

.about-page-content {
    padding: var(--section-pad) 0;
    max-width: 100%;
}

.about-page-content p {
    margin: 0 0 clamp(28px, 3vw, 46px);
    color: var(--black);
    font-size: clamp(1.05rem, 1.2vw, 2rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: 0;
}

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

.about-page-content strong {
    font-weight: 700;
}

.about-page-content em {
    font-style: italic;
}

.about-page-content a {
    color: var(--teal);
    text-decoration: none;
}

.about-page-content a:hover {
    text-decoration: underline;
}

@media(max-width:991px) {
    .about-page-content p {
        font-size: clamp(1rem, 2.3vw, 1.4rem);
        line-height: 1.02;
        margin-bottom: 28px;
    }
}

/* Highlights Section */

.about-highlights-section {
    padding: clamp(28px, 4vw, 52px) 0 0;
    background: var(--white);
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-highlight-card {
    min-height: clamp(240px, 28vw, 360px);
    padding: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-highlight-card.is-teal {
    background: var(--teal);
    color: var(--white);
}

.about-highlight-card.is-light {
    background: var(--white);
    color: var(--teal);
}

.about-highlight-card h3 {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: .9;
}

.about-highlight-card p {
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.7rem);
    font-weight: 700;
    line-height: 1.02;
}

.about-highlight-card.is-teal h3,
.about-highlight-card.is-teal p {
    color: var(--white);
}

.about-highlight-card.is-light h3,
.about-highlight-card.is-light p {
    color: var(--teal);
}

@media(max-width:991px) {
    .about-highlight-card {
        min-height: 220px;
        padding: 28px 24px;
    }

    .about-highlight-card h3 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .about-highlight-card p {
        font-size: clamp(.95rem, 2vw, 1.2rem);
    }
}

@media(max-width:767px) {
    .about-highlights-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight-card {
        min-height: auto;
        gap: 18px;
        padding: 24px 20px;
    }

    .about-highlight-card h3 {
        font-size: 2rem;
    }

    .about-highlight-card p {
        font-size: 1rem;
        line-height: 1.08;
    }
}

/* Philosophy Section */
.about-philosophy-section {
    background: var(--teal);
    padding: clamp(40px, 5vw, 70px) 0;
}

.about-philosophy-inner {
    max-width: 100%;
}

.about-philosophy-inner h2 {
    margin: 0 0 clamp(28px, 3vw, 40px);
    color: var(--white);
    font-size: clamp(2rem, 4vw, 4.3rem);
    font-weight: 700;
    line-height: .95;
}

.about-philosophy-inner p {
    margin: 0;
    max-width: 1200px;
    color: var(--white);
    font-size: clamp(1.05rem, 1.2vw, 2rem);
    font-weight: 700;
    line-height: .98;
}

@media(max-width:991px) {
    .about-philosophy-inner h2 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .about-philosophy-inner p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        line-height: 1.05;
    }
}

@media(max-width:767px) {
    .about-philosophy-section {
        padding: 32px 0;
    }

    .about-philosophy-inner h2 {
        font-size: 1.8rem;
        line-height: 1;
    }

    .about-philosophy-inner p {
        font-size: 1rem;
        line-height: 1.1;
    }
}

/* Locations Section */
.about-locations-section {
    background: var(--white);
    padding: clamp(40px, 5vw, 70px) 0 0;
}

.about-locations-title {
    margin: 0 0 clamp(28px, 3vw, 40px);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--black);
}

.about-locations-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.about-location-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 20px;
}

.about-location-city {
    color: var(--teal);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
}

.about-location-info {
    color: var(--black);
    font-size: clamp(1rem, 1.4vw, 1.7rem);
    font-weight: 600;
    line-height: 1.1;
}

.about-no-drugs-bar {
    margin-top: clamp(30px, 4vw, 50px);
    background: var(--teal);
    color: var(--white);
    text-align: center;
    padding: 14px 10px;
    font-size: clamp(1rem, 1.3vw, 1.6rem);
    font-weight: 700;
    letter-spacing: .5px;
}

@media(max-width:991px) {
    .about-location-item {
        grid-template-columns: 140px 1fr;
    }

    .about-location-city {
        font-size: 2rem;
    }

    .about-location-info {
        font-size: 1.1rem;
    }
}

@media(max-width:767px) {
    .about-locations-section {
        padding: 32px 0 0;
    }

    .about-location-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-location-city {
        font-size: 1.6rem;
    }

    .about-location-info {
        font-size: 1rem;
        line-height: 1.2;
    }

    .about-no-drugs-bar {
        font-size: .95rem;
        padding: 12px 8px;
    }
}

@media(max-width:767px) {
    .about-page-content-section {
        padding: 24px 0 0;
    }

    .about-page-content p {
        font-size: 1rem;
        line-height: 1.08;
        margin-bottom: 22px;
    }
}

@media(max-width:991px) {
    .about-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-info-side {
        justify-content: flex-start;
        text-align: left;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .about-top-bar {
        padding: 16px 0 12px;
    }

    .about-main-title {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
    }

    .about-role {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    .about-cred-line {
        padding-left: 42px;
        font-size: 1rem;
    }

    .about-cred-line::before {
        width: 28px;
        height: 3px;
    }

    .about-intro-strip p {
        font-size: 1rem;
    }
}