.landing-banner {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background-color: #282728;
    background-position: center center;
}

.landing-banner.basic {
    height: auto;
    width: 100%;
    position: relative;
    background-size: cover;
    background-color: #282728;
    padding: 64px 0;
    background-position: center center;
}

.landing-banner.solid-text-only {
    background-color: var(--black);
    height: auto;
    padding: 64px 0;
}

.landing-banner.solid-text-only .landing-banner-gradient,
.landing-banner.solid-text-only .landing-banner-poly,
.landing-banner.solid-text-only .landing-banner-parent-link {
    display: none;
}

.landing-banner.solid-text-only .main-title {
    margin: 0;
}

.landing-banner-wrapper {
    height: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
    position: relative;
    z-index: 600;
}

.landing-banner-content-shell {
    margin: 40px 0;
}

.landing-banner.basic .landing-banner-content-shell {
    margin: 0;
}

.landing-banner.lb-event .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-banner-date-wrapper {
    display: none;
    border-radius: var(--border-radius);
    border: solid 2px var(--greyish-brown);
    width: 290px;
    text-align: center;
    padding: 30px 0;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    flex-shrink: 0;
}

.lb-event-day {
    font-family: 'Red Hat Display', serif;
    font-size: 46px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 16px 0;
}

.lb-event-month {
    font-family: 'Red Hat Display', serif;
    font-size: 20px;
    font-weight: normal;
    color: var(--white);
    margin: 0 0 16px 0;
}

.lb-event-year {
    font-family: 'Red Hat Display', serif;
    font-size: 20px;
    font-weight: normal;
    color: var(--brown-grey);
    margin: 0;
}

/* Used for print */
.lb-event-comma {
    display: none;
}

.landing-banner-date-wrapper .red-wave {
    width: 32px;
    height: auto;
    margin: 0 0 16px 0;
}

.landing-banner-content .page-title {
    background-color: var(--scarlet);
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 8px 12px;
    margin: 0 0 24px;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
}

.landing-banner-content .main-title {
    max-width: 820px;
    font-size: 30px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 24px;
}

.landing-banner-content p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #fff;
    margin: 0;
}

.landing-banner-cta-links {
    margin: 48px 0 0 0;
}

.landing-banner-cta-links .cta-button {
    display: flex;
    margin: 0 0 24px 0;
    justify-content: space-between;
    max-width: 420px;
}

.landing-banner-gradient {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.8;
    background-image: linear-gradient(250deg, rgba(0, 0, 0, 0), #000);
}

.landing-banner-poly {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    background-image: url(../images/pattern-poly-dark.svg);
    background-size: cover;
    background-position: center center;
}

.landing-banner-parent-link {
    padding: 0 var(--margin-m) 0 var(--margin-m);
    max-width: var(--max-page-width);
    margin: 0 auto;
    box-sizing: content-box;
}

.landing-banner-parent-link a {
    top: calc(var(--margin-xs) / 2);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    position: absolute;
    font-size: 15px;
    line-height: 1.7em;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 700;
}

.landing-banner-parent-link svg {
    width: 20px;
    height: 20px;
    margin-right: var(--margin-xs);
}

@media screen and (min-width: 768px) {

    .landing-banner {
        -webkit-box-pack: center;
        justify-content: center;
        height: 682px;
    }

    .landing-banner.basic {
        -webkit-box-pack: center;
        justify-content: center;
        height: auto;
        padding: 110px 0 90px 0;
    }

    .landing-banner-wrapper {
        -webkit-box-pack: center;
        justify-content: center;
    }

    .landing-banner-content-shell {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        margin: 0;
    }

    .landing-banner-date-wrapper {
        display: block;
    }

    .landing-banner-date-wrapper .red-wave {
        width: 64px;
    }

    .landing-banner-content .page-title {
        margin: 0 0 48px;
    }

    .landing-banner-content .main-title {
        font-size: 59px;
        line-height: 1;
        letter-spacing: -1px;
        margin: 0 0 24px;
    }

    .landing-banner-content p {
        font-size: 23px;
        width: 70%;
    }

    .landing-banner-cta-links {
        display: flex;
        align-items: stretch;
    }

    .landing-banner-cta-links .cta-button {
        margin: 0 24px 0 0;
        display: inline-flex;
        justify-content: center;
        max-width: 100%;
    }

    .landing-banner-cta-links .cta-button:last-child {
        margin: 0;
    }

    .landing-banner-parent-link a {
        top: var(--margin-m);
    }

}

@media screen and (max-width: 768px) {
    .landing-banner.solid-text-only {
        padding: 32px 0;
    }

    .landing-banner.solid-text-only .landing-banner-content-shell {
        margin: 0;
    }
}
