body.page-about-us {
    overflow-x: visible;
    background-color: #f7f7f7;
}

.about-page {
    padding-top: 0;
    padding-bottom: 0;
    background: #f7f7f7;
}

.about-brands-banner {
    padding-top: calc(var(--site-header-offset, 110px) + 40px);
    padding-bottom: 40px;
    width: 100%;
}

.about-brands-banner-inner {
    text-align: center;
}

.about-brands-banner-img {
    display: block;
    width: min(96%, 1650px);
    max-width: 1650px;
    max-height: clamp(210px, 24vw, 330px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.about-story-top {
    padding: 18px 0 8px;
    text-align: center;
}

.about-story-title {
    margin: 0 0 8px;
    font-size: 26px;
    color: #111827;
}

.about-story-text {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.5;
    color: #111827;
    white-space: pre-line;
}

.about-story-banner {
    display: block;
    width: 67%;
    max-width: 1320px;
    margin: 50px auto 50px;
    height: auto;
    object-fit: contain;
}

.about-hero {
    padding: 10px 0 12px;
    text-align: center;
}

.about-title {
    margin: 0 0 12px;
    font-size: 26px;
    color: #111827;
}

.about-intro {
    margin: 0 auto;
    max-width: 1074px;
    line-height: 1.7;
    font-size: 17px;
    color: #1f2937;
    white-space: pre-line;
}

.about-star-highlight {
    color: var(--primary);
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.about-blocks {
    padding-top: 16px;
    padding-bottom: 50px;
    margin-bottom: 0;
}

.about-block {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    margin-top: 30px;
    background: #ffffff;
}

.about-block-reverse {
    grid-template-columns: 1fr 1.6fr;
}

.about-block-vision {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 397px);
}

.about-block-media {
    min-height: 290px;
}

.about-block-vision .about-block-media {
    width: 123%;
    max-width: 488px;
    height: 300px;
    min-height: 300px;
    justify-self: end;
    overflow: hidden;
}

.about-block-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-block-content {
    background: #982102;
    color: #f2f2f2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-block-reverse .about-block-content {
    order: -1;
}

.about-block-content h2 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.3;
}

.about-block-content p {
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
    color: #f2f2f2;
    white-space: pre-line;
}

.footer-address-secondary {
    margin-top: 20px;
}

@media (max-width: 980px) {
    .about-brands-banner-img {
        width: 100%;
        max-height: 240px;
    }

    .about-story-title {
        font-size: 18px;
    }

    .about-story-text {
        font-size: 15px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-block,
    .about-block-reverse {
        grid-template-columns: 1fr;
    }

    .about-block-vision {
        grid-template-columns: 1fr;
    }

    .about-block-vision .about-block-media {
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .about-block-reverse .about-block-content {
        order: 0;
    }

    .about-block-content {
        padding: 22px 18px;
    }

    .about-block-content h2 {
        font-size: 32px;
    }
}

