﻿/* ===== About Page ===== */
.about-hero {
    position: relative;
    border-radius: 0 !important;
    /* No max-width here; let .container control width if used */
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.about-hero-img {
    width: 100%;
    height: 35vh; /* Match carousel height */
    min-height: 250px;
    object-fit: cover; /* Match carousel style */
    display: block;
    border-radius: 0 !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 8%;
    text-align: center;
}

.about-hero-title {
    font-family: "Wix Madefor Display","Wix Madefor Text",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    font-weight: 900;
    font-size: clamp(2rem,5vw,3rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.about-quote {
    font-family: "Wix Madefor Display","Wix Madefor Text",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    font-weight: 700;
    font-size: calc(0.75 * 1.8rem);
    text-align: center;
    color: #111;
    max-width: 900px;
    line-height: 1.4;
    margin: 2rem auto;
}

    .about-quote .accent {
        color: var(--orange);
        font-weight: 900;
    }

    .about-quote .ref {
        font-weight: 600;
        font-size: .9em;
        color: #555;
    }

@media (max-width: 1200px) {
    .about-hero-img {
        height: 28vh;
    }
}
