.at-heroBanner + .at-heroBlocks {
    position: relative;
    margin-top: -14rem;
}

.at-heroBlocks__blocksList {
    display: grid;
    gap: 1rem;
}

.at-heroBlocks__blocksListItem {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 4rem 2rem;
    transition: transform ease-in-out .2s;
    color: var(--baseLight100);
    border-radius: var(--borderRadius);
}

.at-heroBlocks__blocksListItem:hover {
    transform: translateY(-5px);
}

.at-heroBlocks__blocksListItem:nth-child(1)  {
    background: var(--accentColor500);
}

.at-heroBlocks__blocksListItem:nth-child(2) {
    background: var(--accentColor300);
}

.at-heroBlocks__blocksListItem:nth-child(3)  {
    background: var(--secondaryColor500);
}

.at-heroBlocks__content {
    text-align: center;
}

.at-heroBlocks__title {
    font-size: 1.875rem;
}

.at-heroBlocks__link {
    color: var(--baseLight100);
}

.at-heroBlocks__image {
    height: 90px;
}


@media (min-width: 500px) {
    .at-heroBlocks__blocksListItem {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .at-heroBlocks__content {
        flex: 1;
        margin-top: 0;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .at-heroBlocks__blocksList {
        grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
        gap: 1rem;
    }

    .at-heroBlocks__blocksListItem {
        align-items: center;
        flex-direction: column-reverse;
    }


    .at-heroBlocks__content {
        text-align: center;
    }

}

@media (min-width: 1024px) {
    .at-heroBlocks__image {
        width: auto;
        height: 150px;
    }
}


