/* =========================================================
   ABOUT PAGE
   Desktop Styles
   ========================================================= */

.about-page {
    background: #ffffff;
    color: #0b2748;
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;

    background: #071f3f;
}

.about-hero__inner {
    position: relative;

    min-height: 520px;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 26, 54, 1) 0%,
            rgba(5, 26, 54, 0.98) 26%,
            rgba(5, 26, 54, 0.92) 38%,
            rgba(5, 26, 54, 0.62) 50%,
            rgba(5, 26, 54, 0.18) 66%,
            rgba(5, 26, 54, 0) 78%
        ),
        url('/assets/images/about/about-hero.jpg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-hero__inner::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.06) 100%
        );

    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 2;

    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    min-height: 520px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding-top: 58px;
    padding-bottom: 62px;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.about-hero__eyebrow {
    margin: 0 0 18px;

    color: #d5a126;

    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.about-hero__title {
    width: 100%;
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(2.7rem, 4vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;

    letter-spacing: -0.035em;
}

.about-hero__title span {
    display: block;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.about-hero__description {
    max-width: 620px;

    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.about-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.about-hero__button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 23px;

    border: 2px solid transparent;

    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.015em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.about-hero__button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.about-hero__button--primary {
    background: #d92027;
    border-color: #d92027;

    color: #ffffff;
}

.about-hero__button--primary:hover {
    background: #b8171d;
    border-color: #b8171d;
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.about-hero__button--secondary {
    background: rgba(7, 31, 63, 0.28);

    border-color: rgba(255, 255, 255, 0.8);

    color: #ffffff;
}

.about-hero__button--secondary:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: #0b2748;
}


/* =========================================================
   BUTTON ARROW
   ========================================================= */

.about-hero__button-arrow {
    display: inline-flex;
    align-items: center;

    font-size: 1rem;
    line-height: 1;
}


/* =========================================================
   HERO VISUAL HOOK
   ========================================================= */

.about-hero__visual {
    display: none;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-hero__inner,
    .about-hero__content {
        min-height: 560px;
    }

    .about-hero__content {
        width: min(100% - 64px, 1480px);
    }
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-hero__inner {
        background-position: 58% center;
    }

    .about-hero__title {
        max-width: 650px;

        font-size: clamp(2.5rem, 4.2vw, 3.6rem);
    }

    .about-hero__description {
        max-width: 550px;
    }
}

/* =========================================================
   WHO WE ARE
   Safety Starts With Preparation
   ========================================================= */

.about-who-we-are {
    background: #ffffff;

    padding: 70px 0 74px;
}

.about-who-we-are__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;

    align-items: center;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-who-we-are__content {
    max-width: 610px;
}

.about-who-we-are__eyebrow {
    margin: 0 0 12px;

    color: #d92027;

    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.about-who-we-are__title {
    margin: 0;

    color: #0b2748;

    font-size: clamp(2.45rem, 3vw, 3.35rem);
    font-weight: 800;
    line-height: 1.06;

    letter-spacing: -0.03em;
}

.about-who-we-are__description {
    margin: 20px 0 0;

    color: #4c5b6b;

    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   MISSION CALLOUT
   ========================================================= */

.about-who-we-are__mission {
    margin-top: 24px;
}

.about-who-we-are__mission-title {
    margin: 0;

    color: #0b2748;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.about-who-we-are__mission
.about-who-we-are__description {
    margin-top: 8px;
}


/* =========================================================
   VISUAL
   ========================================================= */

.about-who-we-are__visual {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #eef1f4;
}

.about-who-we-are__visual img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 430px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-who-we-are {
        padding-top: 78px;
        padding-bottom: 82px;
    }

    .about-who-we-are__visual,
    .about-who-we-are__visual img {
        min-height: 455px;
    }
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-who-we-are__inner {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .about-who-we-are__title {
        font-size: clamp(2.2rem, 3.2vw, 2.8rem);
    }

    .about-who-we-are__description {
        font-size: 0.94rem;
    }

    .about-who-we-are__visual,
    .about-who-we-are__visual img {
        min-height: 400px;
    }
}

/* =========================================================
   MISSION, VISION & PURPOSE
   ========================================================= */

.about-mvp {
    background: #f7f8fa;

    padding: 58px 0 66px;

    border-top: 1px solid #e4e8ed;
    border-bottom: 1px solid #e4e8ed;
}

.about-mvp__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.about-mvp__heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 24px;

    margin-bottom: 46px;
}

.about-mvp__heading-line {
    display: block;

    width: 100%;
    height: 1px;

    background: #ccd3db;
}

.about-mvp__title {
    margin: 0;

    color: #d92027;

    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   THREE COLUMN GRID
   ========================================================= */

.about-mvp__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: stretch;
}


/* =========================================================
   INDIVIDUAL ITEM
   ========================================================= */

.about-mvp__item {
    position: relative;

    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);

    gap: 22px;

    padding: 4px 48px;
}

.about-mvp__item:first-child {
    padding-left: 22px;
}

.about-mvp__item:last-child {
    padding-right: 22px;
}


/* Vertical separators */

.about-mvp__item + .about-mvp__item {
    border-left: 1px solid #d4d9df;
}


/* =========================================================
   ICON
   ========================================================= */

.about-mvp__icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-mvp__icon img {
    display: block;

    width: 64px;
    height: 64px;

    object-fit: contain;
}


/* =========================================================
   ITEM CONTENT
   ========================================================= */

.about-mvp__content {
    min-width: 0;
}

.about-mvp__item-title {
    margin: 7px 0 18px;

    color: #0b2748;

    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: 0.01em;
}

.about-mvp__description {
    margin: 0;

    color: #4c5b6b;

    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-mvp__item {
        grid-template-columns: 62px minmax(0, 1fr);

        gap: 16px;

        padding-left: 28px;
        padding-right: 28px;
    }

    .about-mvp__icon {
        width: 58px;
        height: 58px;
    }

    .about-mvp__icon img {
        width: 56px;
        height: 56px;
    }

    .about-mvp__description {
        font-size: 0.91rem;
    }

}

/* =========================================================
   WHY FIRST IN SAFETY
   Safety Is More Than a Service
   ========================================================= */

.about-why {
    background: #ffffff;

    padding: 64px 0 68px;

    border-bottom: 1px solid #e1e5ea;
}

.about-why__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);

    gap: 58px;

    align-items: start;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.about-why__heading {
    padding-top: 2px;
}

.about-why__eyebrow {
    margin: 0 0 12px;

    color: #d92027;

    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.about-why__title {
    margin: 0;

    color: #0b2748;

    font-size: clamp(2.25rem, 2.8vw, 3rem);
    font-weight: 800;
    line-height: 1.06;

    letter-spacing: -0.03em;
}


/* =========================================================
   PRINCIPLES
   ========================================================= */

.about-why__principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: stretch;
}

.about-why__principle {
    min-width: 0;

    padding: 0 30px;
}

.about-why__principle:first-child {
    padding-left: 0;
}

.about-why__principle:last-child {
    padding-right: 0;
}

.about-why__principle + .about-why__principle {
    border-left: 1px solid #d7dce2;
}


/* =========================================================
   PRINCIPLE HEADER
   ========================================================= */

.about-why__principle-header {
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 16px;
}

.about-why__icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why__icon img {
    display: block;

    width: 54px;
    height: 54px;

    object-fit: contain;
}

.about-why__principle-title {
    margin: 0;

    color: #0b2748;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.about-why__description {
    margin: 17px 0 0;

    color: #4c5b6b;

    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-why__inner {
        grid-template-columns: 235px minmax(0, 1fr);

        gap: 36px;
    }

    .about-why__principle {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-why__principle-header {
        gap: 12px;
    }

    .about-why__icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .about-why__icon img {
        width: 46px;
        height: 46px;
    }

    .about-why__principle-title {
        font-size: 0.91rem;
    }

    .about-why__description {
        font-size: 0.88rem;
    }
}

/* =========================================================
   PROFESSIONAL SERVICES + COMMUNITY MISSION
   ========================================================= */

.about-professional-community {
    background: #f7f8fa;

    padding: 62px 0 72px;

    border-bottom: 1px solid #dfe4e9;
}

.about-professional-community__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.about-professional-community__heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 24px;

    margin-bottom: 42px;
}

.about-professional-community__heading-line {
    width: 100%;
    height: 1px;

    background: #cfd5dc;
}

.about-professional-community__title {
    margin: 0;

    color: #d92027;

    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.about-professional-community__grid {
    display: grid;
    grid-template-columns:
        minmax(330px, 0.92fr)
        minmax(400px, 1.16fr)
        minmax(330px, 0.92fr);

    gap: 48px;

    align-items: center;
}


/* =========================================================
   SERVICE / COMMUNITY PANELS
   ========================================================= */

.about-professional-community__panel {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d8dde3;
}

.about-professional-community__panel-title {
    margin: 0;

    padding: 13px 18px;

    color: #ffffff;

    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;

    text-align: center;

    letter-spacing: 0.015em;
}

.about-professional-community__panel-title--services {
    background: #0b2748;
}

.about-professional-community__panel-title--community {
    background: #d92027;
}


/* =========================================================
   LISTS
   ========================================================= */

.about-professional-community__list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.about-professional-community__list li {
    min-height: 47px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 8px 18px;

    color: #34485c;

    font-size: 0.93rem;
    font-weight: 500;
    line-height: 1.3;

    border-bottom: 1px solid #e1e5e9;
}

.about-professional-community__list li:last-child {
    border-bottom: 0;
}


/* =========================================================
   LIST ICONS
   ========================================================= */

.about-professional-community__list-icon {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-professional-community__list-icon img {
    display: block;

    width: 24px;
    height: 24px;

    object-fit: contain;
}


/* =========================================================
   CENTRAL MISSION
   ========================================================= */

.about-professional-community__mission {
    min-height: 320px;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;

    gap: 18px;
}

.about-professional-community__mission-content {
    position: relative;

    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 42px 36px;

    text-align: center;
}

.about-professional-community__mission-content p {
    position: relative;
    z-index: 2;

    max-width: 330px;

    margin: 0;

    color: #0b2748;

    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
}


/* =========================================================
   FIRST IN SAFETY WATERMARK
   ========================================================= */

.about-professional-community__watermark {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 245px;
    height: 245px;

    transform: translate(-50%, -50%);

    object-fit: contain;

    opacity: 0.055;

    pointer-events: none;
    user-select: none;
}


/* =========================================================
   ARROWS
   ========================================================= */

.about-professional-community__arrow {
    color: #d92027;

    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;

    text-align: center;
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-professional-community__grid {
        grid-template-columns:
            minmax(280px, 0.95fr)
            minmax(300px, 1.1fr)
            minmax(280px, 0.95fr);

        gap: 26px;
    }

    .about-professional-community__mission {
        grid-template-columns: 30px minmax(0, 1fr) 30px;

        gap: 10px;
    }

    .about-professional-community__mission-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-professional-community__mission-content p {
        font-size: 0.96rem;
    }

    .about-professional-community__list li {
        padding-left: 13px;
        padding-right: 13px;

        font-size: 0.86rem;
    }

}

/* =========================================================
   WHO WE SERVE
   ========================================================= */

.about-who-we-serve {
    background: #ffffff;

    padding: 54px 0 66px;

    border-bottom: 1px solid #e1e5ea;
}

.about-who-we-serve__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.about-who-we-serve__heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 22px;

    margin-bottom: 40px;
}

.about-who-we-serve__heading-line {
    width: 100%;
    height: 1px;

    background: #cfd5dc;
}

.about-who-we-serve__title {
    margin: 0;

    color: #d92027;

    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   AUDIENCE GRID
   ========================================================= */

.about-who-we-serve__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));

    align-items: stretch;
}


/* =========================================================
   AUDIENCE ITEM
   ========================================================= */

.about-who-we-serve__item {
    min-width: 0;

    padding: 0 22px;

    text-align: center;
}

.about-who-we-serve__item:first-child {
    padding-left: 6px;
}

.about-who-we-serve__item:last-child {
    padding-right: 6px;
}

.about-who-we-serve__item + .about-who-we-serve__item {
    border-left: 1px solid #d9dee4;
}


/* =========================================================
   ICON
   ========================================================= */

.about-who-we-serve__icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-who-we-serve__icon img {
    display: block;

    width: 58px;
    height: 58px;

    object-fit: contain;
}


/* =========================================================
   TITLE
   ========================================================= */

.about-who-we-serve__item-title {
    min-height: 48px;

    margin: 0;

    color: #0b2748;

    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.about-who-we-serve__description {
    margin: 14px auto 0;

    max-width: 185px;

    color: #4c5b6b;

    font-size: 0.87rem;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-who-we-serve__item {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-who-we-serve__icon {
        width: 52px;
        height: 52px;
    }

    .about-who-we-serve__icon img {
        width: 50px;
        height: 50px;
    }

    .about-who-we-serve__item-title {
        font-size: 0.82rem;
    }

    .about-who-we-serve__description {
        font-size: 0.78rem;
        line-height: 1.55;
    }

}

/* =========================================================
   LOCAL SERVICE
   Broader Community Impact
   ========================================================= */

.about-local-service {
    background: #f7f8fa;

    padding: 66px 0 72px;

    border-bottom: 1px solid #dfe4e9;
}

.about-local-service__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 1.05fr)
        minmax(300px, 0.8fr);

    gap: 38px;

    align-items: center;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-local-service__content {
    max-width: 540px;
}

.about-local-service__eyebrow {
    margin: 0 0 12px;

    color: #d92027;

    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.about-local-service__title {
    margin: 0;

    color: #0b2748;

    font-size: clamp(2.2rem, 2.8vw, 3rem);
    font-weight: 800;
    line-height: 1.06;

    letter-spacing: -0.03em;
}

.about-local-service__description {
    margin: 18px 0 0;

    color: #4c5b6b;

    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   REGIONAL IMAGE
   ========================================================= */

.about-local-service__visual {
    overflow: hidden;

    min-height: 325px;

    background: #e8edf2;
}

.about-local-service__visual img {
    display: block;

    width: 100%;
    height: 325px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   SERVICE AREA MAP
   ========================================================= */

.about-local-service__map {
    min-height: 325px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px 24px 22px;

    background: #ffffff;

    border: 1px solid #d9dee4;
}

.about-local-service__map-image {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 190px;
}

.about-local-service__map-image img {
    display: block;

    width: 100%;
    max-width: 290px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MAP CONTENT
   ========================================================= */

.about-local-service__map-content {
    margin-top: 14px;

    text-align: center;
}

.about-local-service__map-eyebrow {
    margin: 0;

    color: #d92027;

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.about-local-service__map-title {
    margin: 6px 0 0;

    color: #0b2748;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.about-local-service__map-note {
    max-width: 280px;

    margin: 10px auto 0;

    color: #667484;

    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-local-service {
        padding-top: 74px;
        padding-bottom: 80px;
    }

    .about-local-service__visual,
    .about-local-service__visual img,
    .about-local-service__map {
        min-height: 345px;
    }

    .about-local-service__visual img {
        height: 345px;
    }
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-local-service__inner {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(0, 0.95fr)
            minmax(250px, 0.75fr);

        gap: 24px;
    }

    .about-local-service__title {
        font-size: clamp(2rem, 3vw, 2.55rem);
    }

    .about-local-service__description {
        font-size: 0.9rem;
    }

    .about-local-service__map {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-local-service__map-note {
        font-size: 0.72rem;
    }
}

/* =========================================================
   ABOUT TRUST / CREDIBILITY STRIP
   ========================================================= */

.about-trust {
    background: #ffffff;

    padding: 54px 0 58px;

    border-bottom: 1px solid #e1e5ea;
}

.about-trust__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   GRID
   ========================================================= */

.about-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: stretch;
}


/* =========================================================
   ITEM
   ========================================================= */

.about-trust__item {
    min-width: 0;

    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);

    gap: 20px;

    padding: 0 34px;
}

.about-trust__item:first-child {
    padding-left: 4px;
}

.about-trust__item:last-child {
    padding-right: 4px;
}

.about-trust__item + .about-trust__item {
    border-left: 1px solid #d7dce2;
}


/* =========================================================
   ICON
   ========================================================= */

.about-trust__icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-trust__icon img {
    display: block;

    width: 60px;
    height: 60px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-trust__content {
    min-width: 0;
}

.about-trust__content h3 {
    min-height: 48px;

    margin: 2px 0 13px;

    color: #0b2748;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;

    letter-spacing: -0.01em;
}

.about-trust__content p {
    margin: 0;

    color: #4c5b6b;

    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   SCREEN READER ONLY
   ========================================================= */

.sr-only {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-trust {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    .about-trust__item {
        padding-left: 40px;
        padding-right: 40px;
    }

}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-trust__item {
        grid-template-columns: 58px minmax(0, 1fr);

        gap: 14px;

        padding-left: 22px;
        padding-right: 22px;
    }

    .about-trust__icon {
        width: 54px;
        height: 54px;
    }

    .about-trust__icon img {
        width: 52px;
        height: 52px;
    }

    .about-trust__content h3 {
        min-height: 44px;

        font-size: 0.9rem;
    }

    .about-trust__content p {
        font-size: 0.82rem;
        line-height: 1.6;
    }

}

/* =========================================================
   PARTNERSHIPS
   Safer Communities Are Built Together
   ========================================================= */

.about-partnerships {
    background: #fffaf0;

    padding: 48px 0 50px;

    border-top: 1px solid #eee6d6;
    border-bottom: 1px solid #e3dccd;
}

.about-partnerships__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 300px;

    gap: 34px;

    align-items: center;
}


/* =========================================================
   ICON
   ========================================================= */

.about-partnerships__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-partnerships__visual img {
    display: block;

    width: 112px;
    height: 112px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-partnerships__content {
    min-width: 0;
}

.about-partnerships__eyebrow {
    margin: 0 0 8px;

    color: #d92027;

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.about-partnerships__content h2 {
    margin: 0;

    color: #0b2748;

    font-size: clamp(1.9rem, 2.4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.08;

    letter-spacing: -0.025em;
}

.about-partnerships__description {
    max-width: 760px;

    margin: 12px 0 0;

    color: #4c5b6b;

    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.about-partnerships__actions {
    display: flex;
    flex-direction: column;

    gap: 12px;

    width: 100%;
}

.about-partnerships__button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border: 2px solid transparent;

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.02em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.about-partnerships__button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.about-partnerships__button--primary {
    background: #0b2748;
    border-color: #0b2748;

    color: #ffffff;
}

.about-partnerships__button--primary:hover {
    background: #071f3f;
    border-color: #071f3f;
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.about-partnerships__button--secondary {
    background: transparent;

    border-color: #9ca7b2;

    color: #0b2748;
}

.about-partnerships__button--secondary:hover {
    background: #ffffff;

    border-color: #0b2748;

    color: #0b2748;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-partnerships {
        padding-top: 52px;
        padding-bottom: 54px;
    }

    .about-partnerships__inner {
        grid-template-columns: 140px minmax(0, 1fr) 310px;

        gap: 40px;
    }

    .about-partnerships__visual img {
        width: 120px;
        height: 120px;
    }

}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-partnerships__inner {
        grid-template-columns: 105px minmax(0, 1fr) 250px;

        gap: 24px;
    }

    .about-partnerships__visual img {
        width: 92px;
        height: 92px;
    }

    .about-partnerships__content h2 {
        font-size: clamp(1.7rem, 2.5vw, 2.15rem);
    }

    .about-partnerships__description {
        font-size: 0.88rem;
    }

    .about-partnerships__button {
        min-height: 44px;

        padding-left: 14px;
        padding-right: 14px;

        font-size: 0.72rem;
    }

}

/* =========================================================
   FINAL ABOUT CTA
   Let's Build Something Safer Together
   ========================================================= */

.about-final-cta {
    position: relative;

    overflow: hidden;

    background: #f4f6f8;

    padding: 54px 0 58px;

    border-top: 1px solid #e1e5ea;
    border-bottom: 1px solid #d9dee4;
}

.about-final-cta::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(11, 39, 72, 0.035) 0%,
            rgba(11, 39, 72, 0) 36%
        );

    pointer-events: none;
}

.about-final-cta__inner {
    position: relative;
    z-index: 2;

    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 320px;

    gap: 36px;

    align-items: center;
}


/* =========================================================
   VISUAL
   ========================================================= */

.about-final-cta__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-final-cta__visual img {
    display: block;

    width: 118px;
    height: 118px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-final-cta__content {
    min-width: 0;
}

.about-final-cta__eyebrow {
    margin: 0 0 9px;

    color: #d92027;

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.about-final-cta__title {
    margin: 0;

    color: #0b2748;

    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.04;

    letter-spacing: -0.03em;
}

.about-final-cta__description {
    max-width: 760px;

    margin: 14px 0 0;

    color: #4c5b6b;

    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.about-final-cta__actions {
    display: flex;
    flex-direction: column;

    gap: 10px;

    width: 100%;
}

.about-final-cta__button {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border: 2px solid transparent;

    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.02em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.about-final-cta__button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.about-final-cta__button--primary {
    background: #d92027;
    border-color: #d92027;

    color: #ffffff;
}

.about-final-cta__button--primary:hover {
    background: #b8171d;
    border-color: #b8171d;
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.about-final-cta__button--secondary {
    background: #ffffff;

    border-color: #0b2748;

    color: #0b2748;
}

.about-final-cta__button--secondary:hover {
    background: #0b2748;
    border-color: #0b2748;

    color: #ffffff;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .about-final-cta {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    .about-final-cta__inner {
        grid-template-columns: 145px minmax(0, 1fr) 330px;

        gap: 42px;
    }

    .about-final-cta__visual img {
        width: 128px;
        height: 128px;
    }

}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .about-final-cta__inner {
        grid-template-columns: 105px minmax(0, 1fr) 270px;

        gap: 24px;
    }

    .about-final-cta__visual img {
        width: 92px;
        height: 92px;
    }

    .about-final-cta__title {
        font-size: clamp(1.8rem, 2.7vw, 2.3rem);
    }

    .about-final-cta__description {
        font-size: 0.88rem;
    }

    .about-final-cta__button {
        min-height: 44px;

        padding-left: 14px;
        padding-right: 14px;

        font-size: 0.7rem;
    }

}