/* =========================================================
   RESOURCES PAGE
   Desktop Styles
   ========================================================= */

.resources-page {
    background: #ffffff;
    color: #0b2748;
}


/* =========================================================
   RESOURCES HERO
   ========================================================= */

.resources-hero {
    position: relative;
    overflow: hidden;
    background: #071f3f;
}

.resources-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/resources/resources-hero.jpg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.resources-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;
}

.resources-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;
}

.resources-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;
}

.resources-hero__title {
    width: 100%;
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(2.7rem, 4vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.resources-hero__title span {
    display: block;
}

.resources-hero__description {
    max-width: 605px;

    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.75;
}

.resources-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.resources-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;
}

.resources-hero__button:hover {
    transform: translateY(-2px);
}

.resources-hero__button--primary {
    background: #d92027;
    border-color: #d92027;
    color: #ffffff;
}

.resources-hero__button--primary:hover {
    background: #b8171d;
    border-color: #b8171d;
}

.resources-hero__button--secondary {
    background: rgba(7, 31, 63, 0.28);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.resources-hero__button--secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0b2748;
}

.resources-hero__button-arrow {
    display: inline-flex;
    align-items: center;

    font-size: 1rem;
    line-height: 1;
}


/* The hero.php includes this element so we retain
   a dedicated visual hook for future responsive styling. */

.resources-hero__visual {
    display: none;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .resources-hero__inner,
    .resources-hero__content {
        min-height: 560px;
    }

    .resources-hero__content {
        width: min(100% - 64px, 1480px);
    }
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .resources-hero__inner {
        background-position: 58% center;
    }

    .resources-hero__title {
        max-width: 585px;
        font-size: clamp(2.5rem, 4.2vw, 3.6rem);
    }

    .resources-hero__description {
        max-width: 540px;
    }
}

/* =========================================================
   RESOURCE CATEGORIES
   Find the Resources You Need
   ========================================================= */

.resource-categories {
    background: #ffffff;
    padding: 58px 0 72px;
}

.resource-categories__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.resource-categories__heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin-bottom: 34px;
}

.resource-categories__line {
    display: block;

    width: 145px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0),
        rgba(210, 160, 45, 0.75)
    );
}

.resource-categories__line:last-child {
    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0.75),
        rgba(210, 160, 45, 0)
    );
}

.resource-categories__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   CATEGORY GRID
   ========================================================= */

.resource-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   CATEGORY CARD
   ========================================================= */

.resource-category-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 28px 18px 24px;

    background: #ffffff;

    border: 1px solid #e3dfd7;
    border-radius: 4px;

    box-shadow:
        0 2px 4px rgba(5, 30, 60, 0.03),
        0 8px 22px rgba(5, 30, 60, 0.035);

    text-align: center;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.resource-category-card:hover {
    transform: translateY(-4px);

    border-color: rgba(204, 153, 34, 0.55);

    box-shadow:
        0 5px 12px rgba(5, 30, 60, 0.06),
        0 16px 30px rgba(5, 30, 60, 0.08);
}


/* =========================================================
   ICON
   ========================================================= */

.resource-category-card__icon {
    width: 88px;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;
}

.resource-category-card__icon img {
    display: block;

    width: 82px;
    height: 82px;

    object-fit: contain;
}


/* Slight adjustment for visually wider icons */

.resource-category-card:nth-child(3)
.resource-category-card__icon img,

.resource-category-card:nth-child(6)
.resource-category-card__icon img {
    width: 88px;
    height: 88px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.resource-category-card__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.22;

    min-height: 53px;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.resource-category-card__description {
    margin: 14px 0 18px;

    color: #4c5b6b;

    font-size: 0.83rem;
    font-weight: 400;
    line-height: 1.6;

    max-width: 190px;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.resource-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: #d92027;

    font-size: 0.77rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.resource-category-card__link span {
    font-size: 1rem;

    transition: transform 180ms ease;
}

.resource-category-card__link:hover {
    color: #ae171c;
    gap: 11px;
}

.resource-category-card__link:hover span {
    transform: translateX(2px);
}


/* =========================================================
   LAPTOP / SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1400px) {

    .resource-categories__grid {
        gap: 12px;
    }

    .resource-category-card {
        min-height: 325px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .resource-category-card__title {
        font-size: 1rem;
    }

    .resource-category-card__description {
        font-size: 0.8rem;
    }
}


/* =========================================================
   BELOW 1200PX
   Keep desktop usable before mobile styling is added later
   ========================================================= */

@media (max-width: 1200px) {

    .resource-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .resource-category-card {
        min-height: 310px;
    }
}

/* =========================================================
   FEATURED SAFETY RESOURCES
   ========================================================= */

.featured-resources {
    background: #ffffff;
    padding: 10px 0 76px;
}

.featured-resources__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.featured-resources__heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin-bottom: 34px;
}

.featured-resources__line {
    display: block;

    width: 145px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0),
        rgba(210, 160, 45, 0.75)
    );
}

.featured-resources__line:last-child {
    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0.75),
        rgba(210, 160, 45, 0)
    );
}

.featured-resources__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   FEATURED GRID
   ========================================================= */

.featured-resources__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   FEATURED RESOURCE CARD
   ========================================================= */

.featured-resource-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 435px;

    background: #ffffff;

    border: 1px solid #e3dfd7;
    border-radius: 4px;

    box-shadow:
        0 2px 4px rgba(5, 30, 60, 0.03),
        0 8px 22px rgba(5, 30, 60, 0.035);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.featured-resource-card:hover {
    transform: translateY(-4px);

    border-color: rgba(204, 153, 34, 0.55);

    box-shadow:
        0 5px 12px rgba(5, 30, 60, 0.06),
        0 16px 30px rgba(5, 30, 60, 0.08);
}


/* =========================================================
   IMAGE
   ========================================================= */

.featured-resource-card__image {
    position: relative;
    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #eef1f4;
}

.featured-resource-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 260ms ease;
}

.featured-resource-card:hover
.featured-resource-card__image img {
    transform: scale(1.025);
}


/* =========================================================
   RESOURCE TYPE BADGE
   ========================================================= */

.featured-resource-card__badge {
    position: absolute;
    left: 14px;
    bottom: 0;

    min-width: 72px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    background: #d5a126;
    color: #ffffff;

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.035em;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.featured-resource-card__body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 24px 18px 20px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.featured-resource-card__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.featured-resource-card__description {
    margin: 14px 0 20px;

    color: #4c5b6b;

    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.featured-resource-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: #d92027;

    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.featured-resource-card__link span {
    font-size: 1rem;

    transition: transform 180ms ease;
}

.featured-resource-card__link:hover {
    color: #ae171c;
    gap: 11px;
}

.featured-resource-card__link:hover span {
    transform: translateX(2px);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .featured-resource-card {
        min-height: 450px;
    }

    .featured-resource-card__body {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
   SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1400px) {

    .featured-resources__grid {
        gap: 14px;
    }

    .featured-resource-card {
        min-height: 420px;
    }

    .featured-resource-card__body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featured-resource-card__title {
        font-size: 1rem;
    }

    .featured-resource-card__description {
        font-size: 0.8rem;
    }
}


/* =========================================================
   BELOW 1200PX
   Temporary desktop fallback until mobile page styling
   ========================================================= */

@media (max-width: 1200px) {

    .featured-resources__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .featured-resource-card {
        min-height: 410px;
    }

    .featured-resource-card:last-child {
        grid-column: span 2;
    }
}

/* =========================================================
   SAFETY CHECKLISTS & DOWNLOADS
   ========================================================= */

.resource-downloads {
    background: #f8f9fb;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #e6e9ed;

    padding: 54px 0 58px;
}

.resource-downloads__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(300px, 1.65fr) minmax(0, 4fr);
    gap: 34px;

    align-items: stretch;
}


/* =========================================================
   INTRO
   ========================================================= */

.resource-downloads__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 22px;
}

.resource-downloads__eyebrow {
    margin: 0 0 10px;

    color: #d5a126;

    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.resource-downloads__title {
    margin: 0;

    color: #0b2748;

    font-size: clamp(2rem, 2.3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.resource-downloads__description {
    max-width: 430px;

    margin: 16px 0 0;

    color: #4c5b6b;

    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   DOWNLOAD GRID
   ========================================================= */

.resource-downloads__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}


/* =========================================================
   DOWNLOAD CARD
   ========================================================= */

.resource-download-card {
    min-height: 270px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 24px 15px 20px;

    background: #ffffff;

    border: 1px solid #e1e4e8;
    border-radius: 5px;

    box-shadow:
        0 2px 4px rgba(5, 30, 60, 0.025),
        0 7px 18px rgba(5, 30, 60, 0.03);

    text-align: center;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.resource-download-card:hover {
    transform: translateY(-4px);

    border-color: rgba(213, 161, 38, 0.55);

    box-shadow:
        0 5px 12px rgba(5, 30, 60, 0.06),
        0 15px 28px rgba(5, 30, 60, 0.075);
}


/* =========================================================
   DOWNLOAD ICON
   ========================================================= */

.resource-download-card__icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

.resource-download-card__icon img {
    display: block;

    width: 58px;
    height: 58px;

    object-fit: contain;
}

.resource-download-card__icon--all {
    width: 72px;
    height: 72px;

    margin-bottom: 10px;
}

.resource-download-card__icon--all img {
    width: 70px;
    height: 70px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.resource-download-card__title {
    margin: 0;

    color: #0b2748;

    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.resource-download-card__description {
    margin: 12px 0 18px;

    color: #4c5b6b;

    font-size: 0.78rem;
    line-height: 1.55;
}


/* =========================================================
   DOWNLOAD LINK
   ========================================================= */

.resource-download-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: #d92027;

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.resource-download-card__link span {
    font-size: 0.95rem;
}

.resource-download-card__link:hover {
    color: #ae171c;
    gap: 11px;
}


/* =========================================================
   VIEW ALL CARD
   ========================================================= */

.resource-download-card--all {
    border-color: rgba(213, 161, 38, 0.38);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdf8 100%
        );
}

.resource-download-card--all:hover {
    border-color: rgba(213, 161, 38, 0.72);
}


/* =========================================================
   SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1450px) {

    .resource-downloads__inner {
        grid-template-columns: minmax(270px, 1.4fr) minmax(0, 4fr);
        gap: 24px;
    }

    .resource-downloads__grid {
        gap: 10px;
    }

    .resource-download-card {
        padding-left: 11px;
        padding-right: 11px;
    }

    .resource-download-card__title {
        font-size: 0.9rem;
    }

    .resource-download-card__description {
        font-size: 0.74rem;
    }
}


/* =========================================================
   BELOW 1200PX
   ========================================================= */

@media (max-width: 1200px) {

    .resource-downloads__inner {
        grid-template-columns: 1fr;
    }

    .resource-downloads__intro {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .resource-downloads__description {
        max-width: 620px;
    }

    .resource-downloads__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .resource-download-card {
        min-height: 250px;
    }

    .resource-download-card--all {
        grid-column: span 2;
    }
}

/* =========================================================
   PREPAREDNESS FEATURE
   Preparedness Starts Before the Emergency
   ========================================================= */

.preparedness-feature {
    background:
        linear-gradient(
            90deg,
            #071f3f 0%,
            #0a2a52 52%,
            #0b315f 100%
        );

    padding: 58px 0;
}

.preparedness-feature__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 2.1fr);
    gap: 42px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.preparedness-feature__content {
    padding-right: 10px;
}

.preparedness-feature__eyebrow {
    margin: 0 0 12px;

    color: #d5a126;

    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.preparedness-feature__title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.2rem, 2.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.preparedness-feature__description {
    max-width: 470px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.95rem;
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.preparedness-feature__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

.preparedness-feature__button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 18px;

    border: 2px solid transparent;

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.02em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.preparedness-feature__button:hover {
    transform: translateY(-2px);
}

.preparedness-feature__button--primary {
    background: #d92027;
    border-color: #d92027;
    color: #ffffff;
}

.preparedness-feature__button--primary:hover {
    background: #b8171d;
    border-color: #b8171d;
}

.preparedness-feature__button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
}

.preparedness-feature__button--secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0b2748;
}


/* =========================================================
   PREPAREDNESS CYCLE
   ========================================================= */

.preparedness-cycle {
    min-height: 245px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr) auto
        minmax(0, 1fr);

    align-items: stretch;

    border: 1px solid rgba(213, 161, 38, 0.42);
    border-radius: 5px;

    overflow: hidden;

    background: rgba(5, 27, 55, 0.28);
}


/* =========================================================
   STEP
   ========================================================= */

.preparedness-step {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 0;

    padding: 28px 14px 24px;

    text-align: center;
}

.preparedness-step:not(:last-of-type)::after {
    content: "";

    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;

    width: 1px;

    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   STEP ICON
   ========================================================= */

.preparedness-step__icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}

.preparedness-step__icon img {
    display: block;

    width: 72px;
    height: 72px;

    object-fit: contain;
}


/* Slight visual correction for wide icons */

.preparedness-step:nth-of-type(2)
.preparedness-step__icon img,

.preparedness-step:nth-of-type(5)
.preparedness-step__icon img {
    width: 78px;
    height: 78px;
}


/* =========================================================
   STEP TITLE
   ========================================================= */

.preparedness-step__title {
    margin: 0;

    color: #d5a126;

    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.1;

    letter-spacing: 0.035em;
}


/* =========================================================
   STEP DESCRIPTION
   ========================================================= */

.preparedness-step__description {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: 0.8rem;
    line-height: 1.5;
}


/* =========================================================
   ARROWS BETWEEN STEPS
   ========================================================= */

.preparedness-cycle__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .preparedness-feature {
        padding: 62px 0;
    }

    .preparedness-cycle {
        min-height: 255px;
    }

    .preparedness-step {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1400px) {

    .preparedness-feature__inner {
        grid-template-columns: minmax(290px, 0.9fr) minmax(0, 2fr);
        gap: 28px;
    }

    .preparedness-step {
        padding-left: 10px;
        padding-right: 10px;
    }

    .preparedness-step__icon {
        width: 66px;
        height: 66px;
    }

    .preparedness-step__icon img {
        width: 62px;
        height: 62px;
    }

    .preparedness-cycle__arrow {
        width: 24px;
    }

    .preparedness-step__description {
        font-size: 0.76rem;
    }
}


/* =========================================================
   BELOW 1200PX
   Temporary responsive fallback
   ========================================================= */

@media (max-width: 1200px) {

    .preparedness-feature__inner {
        grid-template-columns: 1fr;
    }

    .preparedness-feature__content {
        padding-right: 0;
        text-align: center;
    }

    .preparedness-feature__description {
        margin-left: auto;
        margin-right: auto;
    }

    .preparedness-feature__actions {
        justify-content: center;
    }

    .preparedness-cycle {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .preparedness-cycle__arrow {
        display: none;
    }

    .preparedness-step {
        min-height: 220px;
    }
}

/* =========================================================
   RESOURCES BUILT FOR ORGANIZATIONS
   ========================================================= */

.organization-resources {
    background: #ffffff;
    padding: 58px 0 72px;
}

.organization-resources__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.organization-resources__heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin-bottom: 34px;
}

.organization-resources__line {
    display: block;

    width: 145px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0),
        rgba(210, 160, 45, 0.75)
    );
}

.organization-resources__line:last-child {
    background: linear-gradient(
        90deg,
        rgba(210, 160, 45, 0.75),
        rgba(210, 160, 45, 0)
    );
}

.organization-resources__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.025em;

    text-align: center;
}


/* =========================================================
   ORGANIZATION GRID
   ========================================================= */

.organization-resources__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   ORGANIZATION CARD
   ========================================================= */

.organization-resource-card {
    min-height: 285px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 26px 20px 22px;

    background: #ffffff;

    border: 1px solid #e3dfd7;
    border-radius: 4px;

    box-shadow:
        0 2px 4px rgba(5, 30, 60, 0.025),
        0 8px 20px rgba(5, 30, 60, 0.03);

    text-align: center;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.organization-resource-card:hover {
    transform: translateY(-4px);

    border-color: rgba(213, 161, 38, 0.55);

    box-shadow:
        0 5px 12px rgba(5, 30, 60, 0.06),
        0 16px 28px rgba(5, 30, 60, 0.075);
}


/* =========================================================
   ICON
   ========================================================= */

.organization-resource-card__icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}

.organization-resource-card__icon img {
    display: block;

    width: 70px;
    height: 70px;

    object-fit: contain;
}


/* Give wider icons a little more room */

.organization-resource-card:nth-child(1)
.organization-resource-card__icon img,

.organization-resource-card:nth-child(5)
.organization-resource-card__icon img {
    width: 74px;
    height: 74px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.organization-resource-card__title {
    margin: 0;

    color: #0b2748;

    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;

    min-height: 52px;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.organization-resource-card__description {
    max-width: 225px;

    margin: 13px 0 18px;

    color: #4c5b6b;

    font-size: 0.82rem;
    line-height: 1.6;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.organization-resource-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: #d92027;

    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.organization-resource-card__link span {
    font-size: 1rem;
}

.organization-resource-card__link:hover {
    color: #ae171c;
    gap: 11px;
}


/* =========================================================
   SMALLER DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1400px) {

    .organization-resources__grid {
        gap: 12px;
    }

    .organization-resource-card {
        min-height: 275px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .organization-resource-card__title {
        font-size: 0.98rem;
    }

    .organization-resource-card__description {
        font-size: 0.78rem;
    }
}


/* =========================================================
   BELOW 1200PX
   Temporary fallback until mobile styling
   ========================================================= */

@media (max-width: 1200px) {

    .organization-resources__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .organization-resource-card {
        min-height: 265px;
    }

    .organization-resource-card:last-child {
        grid-column: span 2;
    }
}

/* =========================================================
   LATEST SAFETY ARTICLES + QUICK ACCESS
   ========================================================= */

.resources-information {
    background: #ffffff;
    padding: 56px 0 68px;
}

.resources-information__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(320px, 0.95fr);
    gap: 36px;

    align-items: start;
}


/* =========================================================
   SHARED SECTION HEADINGS
   ========================================================= */

.resources-information__heading-row {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 22px;
}

.resources-information__heading {
    margin: 0;

    color: #0b2748;

    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.025em;

    white-space: nowrap;
}

.resources-information__heading-line {
    flex: 1;

    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(11, 39, 72, 0.28),
        rgba(11, 39, 72, 0.08)
    );
}


/* =========================================================
   LATEST ARTICLES
   ========================================================= */

.latest-articles {
    min-width: 0;
}

.latest-articles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.latest-article-card {
    min-width: 0;
    min-height: 390px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e4e8;
    border-radius: 4px;

    box-shadow:
        0 2px 4px rgba(5, 30, 60, 0.025),
        0 7px 18px rgba(5, 30, 60, 0.03);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.latest-article-card:hover {
    transform: translateY(-4px);

    border-color: rgba(213, 161, 38, 0.5);

    box-shadow:
        0 5px 12px rgba(5, 30, 60, 0.06),
        0 15px 28px rgba(5, 30, 60, 0.075);
}


/* =========================================================
   ARTICLE IMAGE
   ========================================================= */

.latest-article-card__image {
    display: block;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #eef1f4;
}

.latest-article-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 260ms ease;
}

.latest-article-card:hover
.latest-article-card__image img {
    transform: scale(1.025);
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.latest-article-card__body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 16px 14px 17px;
}

.latest-article-card__date {
    display: block;

    margin-bottom: 9px;

    color: #707b87;

    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1.2;
}

.latest-article-card__title {
    margin: 0;

    color: #0b2748;

    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.28;
}

.latest-article-card__description {
    margin: 11px 0 18px;

    color: #4c5b6b;

    font-size: 0.76rem;
    line-height: 1.55;
}

.latest-article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    color: #d92027;

    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.02em;

    text-decoration: none;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.latest-article-card__link:hover {
    color: #ae171c;
    gap: 10px;
}


/* =========================================================
   VIEW ALL ARTICLES
   ========================================================= */

.latest-articles__footer {
    display: flex;
    justify-content: center;

    margin-top: 18px;
}

.latest-articles__all {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 18px;

    border: 1px solid #aeb7c2;

    color: #0b2748;
    background: #ffffff;

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.latest-articles__all:hover {
    transform: translateY(-2px);

    background: #0b2748;
    border-color: #0b2748;
    color: #ffffff;
}


/* =========================================================
   QUICK ACCESS
   ========================================================= */

.quick-access {
    min-width: 0;

    padding-left: 28px;

    border-left: 1px solid #e2e5e9;
}

.quick-access__list {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   QUICK ACCESS ITEM
   ========================================================= */

.quick-access__item {
    position: relative;

    min-height: 66px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 12px;

    align-items: center;

    padding: 8px 2px;

    border-bottom: 1px solid #e6e8eb;

    color: inherit;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        padding-left 180ms ease;
}

.quick-access__item:first-child {
    border-top: 1px solid #e6e8eb;
}

.quick-access__item:hover {
    background: #f8fafc;
    padding-left: 7px;
}


/* =========================================================
   QUICK ACCESS ICON
   ========================================================= */

.quick-access__icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-access__icon img {
    display: block;

    width: 34px;
    height: 34px;

    object-fit: contain;
}


/* =========================================================
   QUICK ACCESS TEXT
   ========================================================= */

.quick-access__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quick-access__content strong {
    color: #0b2748;

    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
}

.quick-access__content small {
    color: #596675;

    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================================
   QUICK ACCESS ARROW
   ========================================================= */

.quick-access__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    color: #d92027;

    font-size: 1rem;
    font-weight: 700;

    transition: transform 180ms ease;
}

.quick-access__item:hover
.quick-access__arrow {
    transform: translateX(3px);
}


/* =========================================================
   SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1400px) {

    .resources-information__inner {
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
        gap: 28px;
    }

    .latest-articles__grid {
        gap: 11px;
    }

    .latest-article-card {
        min-height: 375px;
    }

    .latest-article-card__title {
        font-size: 0.9rem;
    }

    .latest-article-card__description {
        font-size: 0.72rem;
    }

    .quick-access {
        padding-left: 22px;
    }

    .quick-access__content strong {
        font-size: 0.82rem;
    }

    .quick-access__content small {
        font-size: 0.67rem;
    }
}


/* =========================================================
   BELOW 1200PX
   Temporary responsive fallback
   ========================================================= */

@media (max-width: 1200px) {

    .resources-information__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .latest-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .latest-article-card {
        min-height: 390px;
    }

    .quick-access {
        padding-left: 0;

        border-left: 0;
    }

    .quick-access__item {
        min-height: 64px;
    }
}

/* =========================================================
   RESOURCE HELP
   Can't Find What You Need?
   ========================================================= */

.resource-help {
    background: #f7f8fa;
    border-top: 1px solid #e6e9ed;

    padding: 28px 0;
}

.resource-help__inner {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 26px;

    align-items: center;
}


/* =========================================================
   HELP ICON
   ========================================================= */

.resource-help__icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-help__icon img {
    display: block;

    width: 68px;
    height: 68px;

    object-fit: contain;
}


/* =========================================================
   HELP CONTENT
   ========================================================= */

.resource-help__content {
    min-width: 0;
}

.resource-help__title {
    margin: 0 0 8px;

    color: #0b2748;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.025em;
}

.resource-help__description {
    max-width: 650px;

    margin: 0;

    color: #4c5b6b;

    font-size: 0.88rem;
    line-height: 1.6;
}


/* =========================================================
   HELP BUTTON
   ========================================================= */

.resource-help__action {
    display: flex;
    justify-content: flex-end;
}

.resource-help__button {
    min-width: 300px;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 26px;

    background: #d92027;
    border: 2px solid #d92027;

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.resource-help__button:hover {
    background: #b8171d;
    border-color: #b8171d;

    transform: translateY(-2px);
}


/* =========================================================
   RESOURCES CLOSING CTA
   ========================================================= */

.resources-closing-cta {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #b9151c 0%,
            #d21f26 48%,
            #bd171d 100%
        );

    padding: 38px 0;
}


/* subtle background depth */

.resources-closing-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 72% 48%,
            rgba(255, 255, 255, 0.08),
            transparent 34%
        );

    pointer-events: none;
}

.resources-closing-cta__inner {
    position: relative;
    z-index: 1;

    width: min(100% - 48px, 1480px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    gap: 30px;

    align-items: center;
}


/* =========================================================
   CLOSING CTA ICON
   ========================================================= */

.resources-closing-cta__icon {
    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-closing-cta__icon img {
    display: block;

    width: 88px;
    height: 88px;

    object-fit: contain;
}


/* =========================================================
   CLOSING CTA CONTENT
   ========================================================= */

.resources-closing-cta__content {
    min-width: 0;
}

.resources-closing-cta__title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(1.55rem, 1.85vw, 2.15rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.resources-closing-cta__description {
    max-width: 650px;

    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.93rem;
    line-height: 1.6;
}


/* =========================================================
   CTA ACTIONS
   ========================================================= */

.resources-closing-cta__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.resources-closing-cta__button {
    min-width: 190px;
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 22px;

    border: 2px solid transparent;

    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.025em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.resources-closing-cta__button:hover {
    transform: translateY(-2px);
}


/* Light Button */

.resources-closing-cta__button--light {
    background: #ffffff;
    border-color: #ffffff;

    color: #b8171d;
}

.resources-closing-cta__button--light:hover {
    background: #f4f5f7;
    border-color: #f4f5f7;
}


/* Navy Button */

.resources-closing-cta__button--navy {
    background: #0b2748;
    border-color: rgba(255, 255, 255, 0.68);

    color: #ffffff;
}

.resources-closing-cta__button--navy:hover {
    background: #071c35;
    border-color: #ffffff;
}


/* =========================================================
   SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1400px) {

    .resource-help__inner {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 20px;
    }

    .resource-help__button {
        min-width: 260px;
    }

    .resources-closing-cta__inner {
        grid-template-columns: 90px minmax(0, 1fr) auto;
        gap: 24px;
    }

    .resources-closing-cta__icon {
        width: 82px;
        height: 82px;
    }

    .resources-closing-cta__icon img {
        width: 78px;
        height: 78px;
    }

    .resources-closing-cta__button {
        min-width: 165px;
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   BELOW 1200PX
   Temporary fallback until mobile styling
   ========================================================= */

@media (max-width: 1200px) {

    .resource-help__inner {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .resource-help__action {
        grid-column: 1 / -1;

        justify-content: center;

        margin-top: 4px;
    }

    .resource-help__button {
        min-width: 280px;
    }


    .resources-closing-cta__inner {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .resources-closing-cta__actions {
        grid-column: 1 / -1;

        justify-content: center;

        margin-top: 6px;
    }
}