.week-banner {
    position: relative;
    padding: 72px 20px;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.44px;
    line-height: 24px;
    font-family: 'Open Sans';
}

.week-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: #aaa;
}

.week-banner__background > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.week-banner__container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.week-banner__title {
    font-family: 'Open Sans Condensed';
    letter-spacing: -0.02em;
    line-height: 56px;
    font-size: 48px;
}

.week-banner__subtitle {
    margin-bottom: 16px;
}

.week-banner--cta .week-banner__body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}

@media screen and (min-width: 1370px) {
    .week-banner {
        padding-left: 0;
        padding-right: 0;
    }
    
    .week-banner__container {
        flex-direction: row;
    }

    .week-banner__title {
        width: 50%;
        flex-shrink: 0;
    }

    .week-banner__body {
        width: 50%;
        flex-shrink: 0;
    }
}

@media screen and (min-width: 768px) {
    .week-banner--cta .week-banner__body {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px) {
    .week-banner__title {
        font-size: 35px;
        line-height: 40px;
    }
}