.at-hero {
    position: relative;
    height: var(--headerHeight);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.at-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: var(--tertiaryColor500);
    mix-blend-mode: darken;
    opacity: .5;
}

.at-hero__container {
    position: relative;
    z-index: 2;
}

.at-hero__content {
    padding: 1rem;
    text-align: center;
    color: #fff;
}

.at-hero__title {
    margin-bottom: 0;
    color: #fff;
}

.at-hero__description,
.at-hero__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.1em;
}

.at-hero__action + .at-hero__action {
    margin-left: 0.5em;
}

.at-hero__action--pri {
    margin: 0;
    padding: 0.8em 1.5em;
    background-color: var(--primaryColor500);
    color: var(--baseLight100);
}

.at-hero__action--pri:hover {
    scale: 1.1;
    opacity: 1;
    color: var(--baseLight100);
}

.at-hero__action--sec {
    padding: 0.8em 1.5em;
    color: #fff;
}

.at-hero__action--sec:hover {
    color: #fff;
    text-decoration: none;
}

.at-hero__mark {
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

/*
 * Highlighted Item
 */

.at-hero--hasHighlightedItem .at-hero__content {
    margin-bottom: 2em;
    text-align: center;
}

.at-hero__highlightedContainer {
    position: relative;
    width: 50%;
    min-width: 250px;
    margin: 0 auto -10em;
    padding: 1em;
    text-align: center;
    background-color: #fff;
    border-top: 5px solid #e2001a;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease-out;
}

.at-hero__highlightedContainer:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.at-hero__highlightedLinkOverlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.at-hero__highlightedImage {
    display: block;
    width: 100%;
    margin: 0 auto 1em;
}

.at-hero__highlightedTitle {
    margin-bottom: 0.2em;
    font-size: 1.5em;
}

.at-hero__highlightedDescription {
    color: #000;
}

.at-hero__highlightedLink {
    margin: 0;
}

.at-hero__backgroundImage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 600px) {
    .at-hero--hasHighlightedItem .at-hero__content {
        width: 50%;
        text-align: left;
    }


    .at-hero__highlightedContainer {
        position: absolute;
        top: 0;
        right: 0;
        width: 33%;
        text-align: right;
    }
}
