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

.vir-page-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    background-image: var(--vir-page-hero-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}




/* ==========================================================
   OVERLAY
========================================================== */

.vir-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.vir-page-hero .vir-container {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* ==========================================================
   CONTENT
========================================================== */

.vir-page-hero-content {
    width: 100%;
    padding: 0 0 45px;
}


/* ==========================================================
   TITLE
========================================================== */

.vir-page-hero-title {
    margin: 0;
    color: #ffffff;
    font-family: var(--vir-font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}


/* ==========================================================
   BREADCRUMBS
========================================================== */

.vir-page-hero-breadcrumbs {
    margin-top: 15px;
    color: #ffffff;
    font-family: var(--vir-font-body);
    font-size: 14px;
}


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

@media (max-width: 768px) {

    .vir-page-hero {
        min-height: 280px;
    }

    .vir-page-hero-content {
        padding: 35px 0;
    }

    .vir-page-hero-title {
        font-size: 32px;
    }
}


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

@media (max-width: 576px) {

    .vir-page-hero {
        min-height: 250px;
    }

    .vir-page-hero-content {
        padding: 55px 0;
    }

    .vir-page-hero-title {
        font-size: 28px;
    }
}