/* =========================================================
   FLORIDA ELECTRIC STUDIOS
   FRESH TRACKS - CLEAN CARD DESIGN
========================================================= */

.fes-fresh-tracks-section {
    width: 100%;
    padding: 30px 20px 110px;
    background: #160304;
    box-sizing: border-box;
    overflow: hidden;
}

.fes-fresh-tracks-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.fes-fresh-tracks-header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
}

.fes-fresh-tracks-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 24px;
    margin-bottom: 24px;

    border: 1px solid #cba45a;
    border-radius: 5px;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;

    color: #cba45a;
}

.fes-fresh-tracks-header h2 {
    margin: 0 0 22px;

    font-family: Arial, sans-serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;

    color: #ffffff;
}

.fes-fresh-tracks-header h2 span {
    color: #cba45a;
}

.fes-fresh-tracks-header p {
    max-width: 700px;
    margin: 0 auto;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;

    color: #ffffff;
}


/* =========================================================
   CARD LIST
========================================================= */

.fes-fresh-track-list {
    display: flex;
    flex-direction: column;
    gap: 28px;

    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.fes-fresh-track-card {
    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;
    min-height: 420px;

    background: #211112;

    border: 1px solid rgba(203, 164, 90, 0.30);
    border-radius: 8px;

    overflow: hidden;
    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.fes-fresh-track-card:hover {
    transform: translateY(-4px);

    border-color: rgba(203, 164, 90, 0.65);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   REMOVE THE OLD GOLD SIDE LINE
========================================================= */

.fes-fresh-track-card::before {
    display: none !important;
}

.fes-fresh-track-card::after {
    display: none !important;
}


/* =========================================================
   ALTERNATING CARDS
========================================================= */

.fes-fresh-track-card:nth-child(even) {
    flex-direction: row-reverse;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.fes-fresh-track-image {
    position: relative;

    width: 42%;
    min-width: 42%;
    min-height: 420px;

    flex-shrink: 0;

    overflow: hidden;

    background: #0d0d0d;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE
========================================================= */

.fes-fresh-track-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
    outline: 0;

    transition: transform 0.6s ease;
}

.fes-fresh-track-card:hover
.fes-fresh-track-image img {
    transform: scale(1.04);
}


/* =========================================================
   REMOVE IMAGE OVERLAY
========================================================= */

.fes-fresh-track-image::before,
.fes-fresh-track-image::after {
    display: none !important;
    content: none !important;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.fes-fresh-track-content {
    position: relative;

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px 75px;

    box-sizing: border-box;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.fes-fresh-track-number {
    position: absolute;

    top: 32px;
    right: 38px;

    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #cba45a;
}


/* =========================================================
   CATEGORY
========================================================= */

.fes-fresh-track-category {
    display: block;

    margin: 0 0 14px;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #cba45a;
}


/* =========================================================
   TITLE
   DESKTOP = 40PX
========================================================= */

.fes-fresh-track-content h3 {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 40px;
    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1px;

    color: #ffffff;
}


/* =========================================================
   DESCRIPTION
   DESKTOP = 26PX
========================================================= */

.fes-fresh-track-content p {

    margin: 0 0 30px;

    font-family: Arial, sans-serif;

    font-size: 20px !important;
    line-height: 1.55;

    font-weight: 400;

    color: #ffffff;
}


/* =========================================================
   BUTTON
========================================================= */

.fes-fresh-track-buttons {
    display: flex;
    align-items: center;

    margin-top: 0;
}

.fes-track-primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 135px;
    height: 48px;

    padding: 0 30px;

    background: #f1c75b;

    border: 0;
    border-radius: 5px;

    color: #1a0a08;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.fes-track-primary-btn:hover {
    background: #dcae42;

    color: #1a0a08;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(241, 199, 91, 0.25);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .fes-fresh-tracks-container {
        max-width: 1280px;
    }

    .fes-fresh-track-card {
        min-height: 420px;
    }

    .fes-fresh-track-image {
        min-height: 420px;
    }

    .fes-fresh-track-content {
        padding: 60px 75px;
    }

    .fes-fresh-track-content h3 {
        font-size: 40px;
    }

    .fes-fresh-track-content p {
        font-size: 26px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .fes-fresh-tracks-section {
        padding: 30px 25px 90px;
    }

    .fes-fresh-track-card {
        min-height: 370px;
    }

    .fes-fresh-track-image {
        width: 40%;
        min-width: 40%;
        min-height: 370px;
    }

    .fes-fresh-track-content {
        padding: 50px 50px;
    }

    .fes-fresh-track-content h3 {
        font-size: 36px;
    }

    .fes-fresh-track-content p {
        font-size: 21px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .fes-fresh-tracks-section {
        padding: 30px 20px 80px;
    }

    .fes-fresh-tracks-header {
        margin-bottom: 40px;
    }

    .fes-fresh-tracks-header h2 {
        font-size: 42px;
    }

    .fes-fresh-tracks-header p {
        font-size: 15px;
    }

    .fes-fresh-track-card {
        min-height: 320px;
    }

    .fes-fresh-track-image {
        width: 40%;
        min-width: 40%;
        min-height: 320px;
    }

    .fes-fresh-track-content {
        padding: 40px 35px;
    }

    .fes-fresh-track-number {
        top: 22px;
        right: 25px;
    }

    .fes-fresh-track-category {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .fes-fresh-track-content h3 {
        font-size: 30px;
        margin-bottom: 13px;
    }

    .fes-fresh-track-content p {
        font-size: 17px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .fes-track-primary-btn {
        min-width: 120px;
        height: 44px;
        padding: 0 24px;
        font-size: 12px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .fes-fresh-tracks-section {
        padding: 25px 15px 65px;
    }

    .fes-fresh-tracks-header {
        margin-bottom: 35px;
    }

    .fes-fresh-tracks-label {
        padding: 8px 17px;
        margin-bottom: 18px;

        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .fes-fresh-tracks-header h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .fes-fresh-tracks-header p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* Mobile card */

    .fes-fresh-track-card,
    .fes-fresh-track-card:nth-child(even) {
        display: flex;

        flex-direction: column;

        min-height: auto;

        border-radius: 7px;
    }


    /* Mobile image */

    .fes-fresh-track-image {
        width: 100%;
        min-width: 100%;

        height: 245px;
        min-height: 245px;
    }

    .fes-fresh-track-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* Mobile content */

    .fes-fresh-track-content {
        width: 100%;

        min-height: auto;

        padding: 32px 25px 30px;

        justify-content: flex-start;
    }


    /* Number */

    .fes-fresh-track-number {
        top: 22px;
        right: 24px;

        font-size: 11px;
    }


    /* Category */

    .fes-fresh-track-category {
        margin-bottom: 10px;

        font-size: 9px;
        letter-spacing: 1.6px;
    }


    /* Title */

    .fes-fresh-track-content h3 {
        margin-bottom: 12px;

        font-size: 28px;
        line-height: 1.15;
    }


    /* Description */

    .fes-fresh-track-content p {
        margin-bottom: 22px;

        font-size: 16px !important;
        line-height: 1.6;

        color: #ffffff;
    }


    /* Button */

    .fes-track-primary-btn {
        min-width: 115px;
        height: 42px;

        padding: 0 23px;

        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .fes-fresh-tracks-section {
        padding: 20px 12px 55px;
    }

    .fes-fresh-tracks-header {
        margin-bottom: 30px;
    }

    .fes-fresh-tracks-header h2 {
        font-size: 30px;
    }

    .fes-fresh-tracks-header p {
        font-size: 12px;
    }


    /* Image */

    .fes-fresh-track-image {
        height: 215px;
        min-height: 215px;
    }


    /* Content */

    .fes-fresh-track-content {
        padding: 28px 20px 27px;
    }


    /* Number */

    .fes-fresh-track-number {
        top: 19px;
        right: 19px;

        font-size: 10px;
    }


    /* Category */

    .fes-fresh-track-category {
        font-size: 8.5px;
        letter-spacing: 1.4px;
    }


    /* Title */

    .fes-fresh-track-content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }


    /* Description */

    .fes-fresh-track-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;

        color: #ffffff;
    }


    /* Button */

    .fes-track-primary-btn {
        min-width: 108px;
        height: 40px;

        padding: 0 20px;

        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .fes-fresh-tracks-section {
        padding: 15px 10px 50px;
    }

    .fes-fresh-tracks-header {
        margin-bottom: 25px;
    }

    .fes-fresh-tracks-header h2 {
        font-size: 27px;
    }

    .fes-fresh-track-image {
        height: 195px;
        min-height: 195px;
    }

    .fes-fresh-track-content {
        padding: 25px 17px;
    }

    .fes-fresh-track-content h3 {
        font-size: 22px;
    }

    .fes-fresh-track-content p {
        font-size: 13px !important;
        line-height: 1.6;
    }

    .fes-track-primary-btn {
        min-width: 105px;
        height: 39px;

        padding: 0 18px;
    }
}