.Article.Article--template.at-heroSlider {
    margin-top: 0;
}

.at-heroSlider {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.at-heroSlider__slideInner {
    min-height: 200px;
    height: 100%;
    background-color: var(--primaryColor500);
    background-repeat: no-repeat;
    background-size: cover;
}

.at-heroSlider__contentContainer {
    display: none;
}

.at-heroSlider__content {
    max-width: 40rem;
    margin-left: auto;
    padding: 1.5rem;
    border-radius: var(--borderRadius);
    background: var(--baseLight100);
}

.at-heroSlider__title {
    margin: 0 0 .5rem;
    font-size: 2.2rem;
    text-transform: none;
    color: var(--primaryColor500);
}

.at-heroSlider__introduction {
    overflow: auto;
    margin: 0;
    font-size: var(--h6Size);
    font-weight: 600;
    color: var(--greenColor500);
}

.at-heroSlider__linkWrapper {
    text-align: right;
}

.at-heroSlider__link {
    margin-top: 2rem;
}

/**
 *  Slider controls
 */

.at-heroSlider__controlButton {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    margin-top: -1.5rem;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    text-indent: -9999em;
}

.at-heroSlider__controlButton,
.at-heroSlider__controlButton:hover {
    background: none;
}

.at-heroSlider__controlButton::before {
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    content: '';
    font-family: var(--iconFont);
    font-weight: 400;
    line-height: 3rem;
    text-indent: 0;
    opacity: .75;
}

.at-heroSlider__controlButton:hover::before {
    opacity: 1;
}

.at-heroSlider__controlButton--prev {
    left: 0;
}

.at-heroSlider__controlButton--prev::before {
    content: '\e801';
}

.at-heroSlider__controlButton--next {
    right: 0;
}

.at-heroSlider__controlButton--next::before {
    content: '\e802';
}

/**
 *  Slider bullet navigation
 */

.tns-nav {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 1.5rem;
    text-align: center;
}

.tns-nav button {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    opacity: .25;
    background: var(--baseDark900);
}

.tns-nav button.tns-nav-active {
    opacity: .75;
}

@media screen and (min-width: 768px) {
    .at-heroSlider__slideInner {
        min-height: 430px;
    }

    .at-heroSlider__contentContainer {
        display: block;
        padding: 2rem 0 0;
    }
}
