.at-banner {
    margin: 0;
    padding: 0;
    background-color: var(--primaryColor100);
}

.at-banner__container {
    padding: 7rem 1rem;
}

.at-banner__inner {
    position: relative;
}

.at-banner__image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.at-banner__image--posYTop {
    object-position: top center;
}

.at-banner__image--posYBottom {
    object-position: bottom center;
}

.Article.at-banner {
    margin-bottom: 0;
}

.at-banner--hasImage {
    position: relative;
}

.at-banner--hasImage::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background-color: rgba(0, 0, 0, .4);
}

.at-banner__contentWrapper {
    max-width: 36rem;
}

.at-banner__inner--centered .at-banner__contentWrapper {
    margin: 0 auto;
}

.at-banner--hasImage .at-banner__contentWrapper {
    position: relative;
    z-index: 1;
}

.at-banner__title {
    margin: 0;
    font-size: var(--h1Size);
    line-height: 1.2;
}

.at-banner__inner--centered .at-banner__title {
    text-align: center;
}

.at-banner--hasImage .at-banner__title {
    color: var(--baseLight100);
    text-shadow: 0 1px 2px #000;
}

.at-banner__title--green,
.at-banner--hasImage .at-banner__title--green {
    color: var(--primaryColor500);
}

.at-banner__description {
    margin: 1rem 0;
    font-size: var(--h4Size);
}

.at-banner--hasImage .at-banner__description {
    color: var(--baseLight100);
}

/** Featured block **/

.at-banner__featuredBlock {
    position: relative;
    z-index: 1;
    margin: 4rem 0 -7rem;
    padding: 1.5rem 1.5rem .7rem;
    text-align: center;
    background: var(--primaryColor500);
}

.at-banner__featuredTitle {
    margin-bottom: .5rem;
}

.at-banner__featuredTitle,
.at-banner__featuredContent * {
    color: var(--baseLight100);
}

.at-banner__featuredContent {
    max-width: 40rem;
    margin: 0 auto;
}

.at-banner__featuredContent a[class*='ctaButton'] {
    border-color: var(--baseLight100);
    color: var(--primaryColor500);
    background: var(--baseLight100);
}

.at-banner__featuredContent a[class*='ctaButton']:hover {
    border-color: var(--baseLight100);
    color: var(--baseDark900);
    background: var(--baseLight100);
}

@media (min-width: 950px) {
    .at-banner__featuredBlock {
        position: absolute;
        right: 0;
        bottom: -9rem;
        width: 21rem;
        margin: 0;
        text-align: left;
    }

    .at-banner__inner--centered .at-banner__contentWrapper {
        margin: 0;
    }

    .at-banner__inner--centered .at-banner__title {
        text-align: left;
    }

    .at-banner__featuredContent a[class*='ctaButton'] {
        width: 100%;
    }
}

@media (min-width: 1250px) {
    .at-banner__container {
        padding: 10rem 1rem;
    }

    .at-banner__title {
        line-height: 1.4;
    }
}

@media (min-width: 1300px) {
    .at-banner__inner--centered .at-banner__contentWrapper {
        margin: 0 auto;
    }

    .at-banner__inner--centered .at-banner__title {
        text-align: center;
    }
}
