<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* =========================================================
   FFH MEDIA STORIES
   3 MEDIA PER SLIDE
   LEFT: 2 CARDS
   RIGHT: 1 LARGE CARD
========================================================= */

.ffh-media {
    width: 100%;
    background: #eeeeee;
    padding: 70px 0 65px;
    overflow: hidden;
}

.ffh-media *,
.ffh-media *::before,
.ffh-media *::after {
    box-sizing: border-box;
}

.ffh-media__container {
    width: min(1400px, 90%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.ffh-media__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.ffh-media__heading {
    margin: 0;
}

.ffh-media__eyebrow {
    display: block;

    margin-bottom: 8px;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 4px;

    color: #b8873c;

    text-transform: uppercase;
}

.ffh-media__heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1.1;

    font-weight: 400;

    color: #1c1c1c;
}


/* =========================================================
   ARROWS
========================================================= */

.ffh-media__navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ffh-media__navigation button {
    width: 46px;
    height: 46px;

    margin: 0;
    padding: 0;

    border: 1px solid #d0cbc2;
    border-radius: 0;

    background: #ffffff;

    color: #222222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Arial, sans-serif;
    font-size: 20px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.ffh-media__navigation button:hover {
    background: #b8873c;
    border-color: #b8873c;
    color: #ffffff;

    transform: translateY(-2px);
}

.ffh-media__navigation button:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}

.ffh-media__navigation button span {
    line-height: 1;
}


/* =========================================================
   SLIDER VIEWPORT
========================================================= */

.ffh-media__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* =========================================================
   SLIDER TRACK
========================================================= */

.ffh-media__track {
    width: 100%;

    display: flex;

    margin: 0;
    padding: 0;

    transition:
        transform .75s
        cubic-bezier(.77, 0, .18, 1);

    will-change: transform;
}


/* =========================================================
   SLIDE
========================================================= */

.ffh-media__slide {
    flex: 0 0 100%;

    width: 100%;
    min-width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(0, 1fr);

    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.ffh-media__left {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 30px;
}


/* =========================================================
   SMALL CARD
========================================================= */

.ffh-media__small-card {
    width: 100%;
    min-width: 0;

    height: 245px;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .04);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.ffh-media__small-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}


/* =========================================================
   SMALL CARD LINK
========================================================= */

.ffh-media__small-card > a {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        45%;

    text-decoration: none;

    color: inherit;
}


/* =========================================================
   SMALL CARD CONTENT
========================================================= */

.ffh-media__small-content {
    min-width: 0;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;
}


/* SOURCE */

.ffh-media__small-content .ffh-media__source {
    display: block;

    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 2px;

    color: #b8873c;

    text-transform: uppercase;
}


/* TITLE */

.ffh-media__small-content h3 {
    margin: 0 0 14px;
    padding: 0;

    font-family:
        Arial,
        sans-serif;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 400;

    color: #242424;
}


/* DESCRIPTION */

.ffh-media__small-content p {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.6;

    color: #666666;
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.ffh-media__small-image {
    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;

    background: #dddddd;
}

.ffh-media__small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform .8s
        cubic-bezier(.22, 1, .36, 1);
}

.ffh-media__small-card:hover
.ffh-media__small-image img {
    transform: scale(1.07);
}


/* =========================================================
   LARGE CARD
========================================================= */

.ffh-media__large-card {
    width: 100%;
    min-width: 0;

    height: 520px;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .04);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.ffh-media__large-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}


/* =========================================================
   LARGE CARD LINK
========================================================= */

.ffh-media__large-card > a {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    text-decoration: none;

    color: inherit;
}


/* =========================================================
   LARGE IMAGE
========================================================= */

.ffh-media__large-image {
    width: 100%;

    height: 250px;

    position: relative;

    overflow: hidden;

    background: #dddddd;
}

.ffh-media__large-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform .8s
        cubic-bezier(.22, 1, .36, 1);
}

.ffh-media__large-card:hover
.ffh-media__large-image img {
    transform: scale(1.06);
}


/* =========================================================
   LARGE CONTENT
========================================================= */

.ffh-media__large-content {
    flex: 1;

    min-height: 0;

    padding: 24px 25px 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;
}


/* SOURCE */

.ffh-media__large-content .ffh-media__source {
    display: block;

    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 2px;

    color: #b8873c;

    text-transform: uppercase;
}


/* TITLE */

.ffh-media__large-content h3 {
    margin: 0 0 14px;
    padding: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 400;

    color: #252525;
}


/* DESCRIPTION */

.ffh-media__large-content p {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.65;

    color: #777777;
}


/* =========================================================
   MEDIA LOGO
========================================================= */

.ffh-media__logo {
    display: block;

    width: auto;

    max-width: 105px;
    max-height: 40px;

    height: auto;

    margin-top: 18px;

    object-fit: contain;

    object-position: left center;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.ffh-media__play {
    width: 52px;
    height: 52px;

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #d62828;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1;

    padding-left: 3px;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, .25);

    transition:
        transform .3s ease,
        background .3s ease;
}

.ffh-media__small-card:hover
.ffh-media__play {
    background: #b8873c;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}

.ffh-media__play--large {
    width: 58px;
    height: 58px;

    font-size: 17px;
}


/* =========================================================
   BOTTOM
========================================================= */

.ffh-media__bottom {
    width: 100%;

    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;
}


/* COUNTER */

.ffh-media__counter {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1;

    color: #888888;
}

.ffh-media__counter strong {
    color: #222222;
}


/* VIEW ALL */

.ffh-media__view-all {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    font-family:
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1;

    text-decoration: none;

    color: #222222;

    transition:
        color .3s ease;
}

.ffh-media__view-all span {
    display: inline-block;

    font-size: 24px;

    line-height: 1;

    transition:
        transform .3s ease;
}

.ffh-media__view-all:hover {
    color: #b8873c;
}

.ffh-media__view-all:hover span {
    transform: translateX(6px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ffh-media__container {
        width: 92%;
    }

    .ffh-media__slide {
        gap: 20px;
    }

    .ffh-media__small-card {
        height: 220px;
    }

    .ffh-media__small-content {
        padding: 22px;
    }

    .ffh-media__small-content h3 {
        font-size: 19px;
    }

    .ffh-media__small-content p {
        font-size: 12px;
    }

    .ffh-media__large-card {
        height: 460px;
    }

    .ffh-media__large-image {
        height: 215px;
    }

    .ffh-media__large-content {
        padding: 22px;
    }

    .ffh-media__large-content h3 {
        font-size: 24px;
    }
}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .ffh-media__slide {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(0, 1fr);
    }

    .ffh-media__small-card > a {
        grid-template-columns:
            minmax(0, 1fr)
            42%;
    }

    .ffh-media__small-content {
        padding: 18px;
    }

    .ffh-media__small-content h3 {
        font-size: 17px;
    }

    .ffh-media__small-content p {
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ffh-media {
        padding: 55px 0;
    }

    .ffh-media__container {
        width: 90%;
    }


    /* HEADER */

    .ffh-media__header {
        align-items: center;

        margin-bottom: 25px;
    }

    .ffh-media__eyebrow {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .ffh-media__heading h2 {
        font-size: 38px;
    }


    /* ARROWS */

    .ffh-media__navigation {
        gap: 6px;
    }

    .ffh-media__navigation button {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }


    /* SLIDE */

    .ffh-media__slide {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* LEFT */

    .ffh-media__left {
        gap: 20px;
    }


    /* SMALL CARD */

    .ffh-media__small-card {
        height: 200px;
    }

    .ffh-media__small-card > a {
        grid-template-columns:
            minmax(0, 1fr)
            43%;
    }

    .ffh-media__small-content {
        padding: 20px;
    }

    .ffh-media__small-content
    .ffh-media__source {
        font-size: 9px;

        letter-spacing: 1.5px;

        margin-bottom: 7px;
    }

    .ffh-media__small-content h3 {
        font-size: 18px;

        margin-bottom: 10px;
    }

    .ffh-media__small-content p {
        font-size: 11px;

        line-height: 1.5;
    }


    /* LARGE CARD */

    .ffh-media__large-card {
        height: auto;

        min-height: 0;
    }

    .ffh-media__large-image {
        height: 230px;
    }

    .ffh-media__large-content {
        padding: 22px;
    }

    .ffh-media__large-content h3 {
        font-size: 25px;
    }

    .ffh-media__large-content p {
        font-size: 13px;
    }


    /* BOTTOM */

    .ffh-media__bottom {
        margin-top: 25px;

        gap: 20px;

        flex-wrap: wrap;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ffh-media {
        padding: 45px 0;
    }

    .ffh-media__heading h2 {
        font-size: 33px;
    }

    .ffh-media__small-card {
        height: 185px;
    }

    .ffh-media__small-content {
        padding: 15px;
    }

    .ffh-media__small-content h3 {
        font-size: 16px;
    }

    .ffh-media__small-content p {
        font-size: 10px;
    }

    .ffh-media__large-image {
        height: 200px;
    }

    .ffh-media__large-content {
        padding: 20px;
    }

    .ffh-media__large-content h3 {
        font-size: 23px;
    }

    .ffh-media__large-content p {
        font-size: 12px;
    }

    .ffh-media__bottom {
        flex-direction: column;

        gap: 15px;
    }
}


/* =========================================================
   FOCUS
========================================================= */

.ffh-media__navigation button:focus-visible,
.ffh-media__view-all:focus-visible,
.ffh-media__small-card a:focus-visible,
.ffh-media__large-card a:focus-visible {

    outline: 2px solid #b8873c;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ffh-media__track,
    .ffh-media__small-card,
    .ffh-media__large-card,
    .ffh-media__small-image img,
    .ffh-media__large-image img,
    .ffh-media__navigation button,
    .ffh-media__view-all span {

        transition: none !important;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
