

/* =========================================================
   VFML — GLOBAL PAGE STYLING
   ========================================================= */

.vfml-hero,
.vfml-intro,
.vfml-section,
.vfml-story,
.vfml-network,
.vfml-closing {
    box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.vfml-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #111;
}

.vfml-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vfml-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.52) 48%,
            rgba(0,0,0,.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.72) 0%,
            transparent 55%
        );
}

.vfml-hero-content {
    position: relative;
    z-index: 2;

    width: min(1150px, calc(100% - 50px));
    margin: 0 auto;

    padding: 90px 0 75px;

    color: #fff;
}

.vfml-eyebrow,
.vfml-section-label {
    display: block;

    color: #1e8bd9;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 12px;
}

.vfml-hero h1 {
    max-width: 760px;

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(46px, 7vw, 82px);
    line-height: .98;
}

.vfml-hero-content p {
    max-width: 680px;

    margin: 0 0 28px;

    color: #f0f0f0;

    font-size: 19px;
    line-height: 1.65;
}


/* =========================================================
   BUTTON
   ========================================================= */

.vfml-button,
.vfml-button:link,
.vfml-button:visited {
    display: inline-block;

    padding: 13px 21px;

    background: #1e8bd9;

    border: 1px solid #1e8bd9;
    border-radius: 6px;

    color: #fff !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}

.vfml-button:hover,
.vfml-button:focus {
    background: #359ce6;

    color: #fff !important;

    transform: translateY(-2px);
}


/* =========================================================
   INTRO
   ========================================================= */

.vfml-intro {
    max-width: 900px;

    margin: 0 auto;

    padding: 75px 25px;

    text-align: center;
}

.vfml-intro h2,
.vfml-section-heading h2,
.vfml-story h2,
.vfml-closing h2 {
    margin: 0 0 20px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.vfml-intro p {
    max-width: 760px;

    margin: 0 auto 18px;

    line-height: 1.75;
}

.vfml-intro-lead {
    font-size: 19px;
}


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.vfml-section,
.vfml-network {
    max-width: 1200px;

    margin: 0 auto;

    padding: 45px 25px 80px;
}

.vfml-section-heading {
    max-width: 800px;

    margin: 0 auto 40px;

    text-align: center;
}

.vfml-section-heading p {
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   FEATURED ADVENTURES
   ========================================================= */

.vfml-featured-feed {
    max-width: 1200px !important;

    margin: -40px auto 70px !important;

    padding-left: 25px;
    padding-right: 25px;
}


/* =========================================================
   TRAVEL JOURNAL
   ========================================================= */

.vfml-journal {
    border-top:
        1px solid rgba(30,139,217,.25);
}

.vfml-journal-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 20px;
}

.vfml-journal-card {
    position: relative;

    min-height: 260px;

    padding: 32px;

    color: inherit !important;

    text-decoration: none !important;

    background:
        linear-gradient(
            145deg,
            #171717,
            #101010
        );

    border:
        1px solid rgba(30,139,217,.28);

    border-radius: 14px;

    box-shadow:
        0 10px 28px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.vfml-journal-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(30,139,217,.75);

    box-shadow:
        0 16px 34px rgba(0,0,0,.38);
}

.vfml-year {
    display: block;

    color: #1e8bd9;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 13px;
}

.vfml-journal-card h3 {
    margin: 0 0 14px;

    font-size: 25px;
}

.vfml-journal-card p {
    margin: 0 0 24px;

    line-height: 1.65;
}

.vfml-card-link,
.vfml-text-link {
    color: #1e8bd9 !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none !important;
}


/* =========================================================
   PERSONAL STORY
   ========================================================= */

.vfml-story {
    max-width: 1100px;

    margin: 10px auto 85px;

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    overflow: hidden;

    background: #171717;

    border:
        1px solid rgba(30,139,217,.28);

    border-radius: 16px;

    box-shadow:
        0 14px 35px rgba(0,0,0,.28);
}

.vfml-story-image {
    min-height: 500px;
}

.vfml-story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.vfml-story-content {
    padding: 55px 50px;
}

.vfml-story-content p {
    line-height: 1.75;
}


/* =========================================================
   TWO PATHS
   ========================================================= */

.vfml-two-paths {
    border-top:
        1px solid rgba(30,139,217,.22);
}

.vfml-path-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 20px;
}

.vfml-path-card {
    padding: 36px;

    background: #171717;

    border:
        1px solid rgba(30,139,217,.25);

    border-radius: 14px;
}

.vfml-path-icon {
    display: block;

    margin-bottom: 17px;

    font-size: 30px;
}

.vfml-path-card h3 {
    margin: 0 0 15px;

    font-size: 26px;
}

.vfml-path-card p {
    line-height: 1.7;
}


/* =========================================================
   MONTY NETWORK
   ========================================================= */

.vfml-network {
    border-top:
        1px solid rgba(30,139,217,.22);
}

.vfml-network-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 12px;
}

.vfml-network-grid a {
    padding: 24px 12px;

    text-align: center;

    color: inherit !important;

    text-decoration: none !important;

    background: #171717;

    border:
        1px solid rgba(30,139,217,.22);

    border-radius: 12px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.vfml-network-grid a:hover {
    transform: translateY(-3px);

    border-color:
        rgba(30,139,217,.7);
}

.vfml-network-grid span {
    display: block;

    margin-bottom: 10px;

    font-size: 25px;
}

.vfml-network-grid strong {
    display: block;

    margin-bottom: 7px;
}

.vfml-network-grid small {
    display: block;

    color: #1e8bd9;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   CLOSING
   ========================================================= */

.vfml-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 40px 25px 80px;

    text-align: center;
}

.vfml-closing p {
    max-width: 650px;

    margin: 0 auto 25px;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .vfml-network-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .vfml-network-grid a:last-child {
        grid-column: 1 / -1;

        max-width: 400px;

        width: 100%;

        margin: 0 auto;
    }

    .vfml-story {
        margin-left: 15px;
        margin-right: 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .vfml-hero {
        min-height: 540px;
    }

    .vfml-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.88) 0%,
                rgba(0,0,0,.48) 70%,
                rgba(0,0,0,.25) 100%
            );
    }

    .vfml-hero-content {
        width: calc(100% - 36px);

        padding:
            70px 0 50px;
    }

    .vfml-hero-content p {
        font-size: 16px;
    }

    .vfml-intro {
        padding:
            55px 18px;
    }

    .vfml-section,
    .vfml-network {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 60px;
    }

    .vfml-featured-feed {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vfml-journal-grid,
    .vfml-path-grid {
        grid-template-columns: 1fr;
    }

    .vfml-journal-card {
        min-height: 0;

        padding: 26px 22px;
    }

    .vfml-story {
        grid-template-columns: 1fr;
    }

    .vfml-story-image {
        min-height: 300px;
    }

    .vfml-story-content {
        padding: 35px 24px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .vfml-network-grid {
        grid-template-columns: 1fr;
    }

    .vfml-network-grid a:last-child {
        grid-column: auto;

        max-width: none;
    }

    .vfml-path-card {
        padding: 28px 22px;
    }

}

