/*
 * About Us — Hero + trust-strip responsive breakpoints (bug73).
 * log-about-hero.css and log-about-content.css ship with zero @media
 * queries, so the hero grid and 4-column trust strip never adapt below
 * desktop width. Breakpoints match reference about_us_2.html (980px, 760px).
 */
@media (max-width: 980px) {
    .log-co-ab-hero {
        margin: 14px 16px 0 !important;
        padding: 48px 28px 60px;
    }

    .log-co-ab-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .log-co-ab-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .log-co-ab-trust-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 760px) {
    .log-co-ab-trust-inner {
        grid-template-columns: 1fr;
    }

    .log-co-ab-trust-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .log-co-ab-trust-item:last-child {
        border-bottom: none;
    }
}
