.at-story {
    display: grid;
    grid-template-columns: 202px 90px;
    align-items: center;
    -webkit-user-select: none; /* Safari */
    user-select: none; /* Standard syntax */
}

.at-story__arrow {
    display: flex;
    align-items: center;
    width: 90px;
    height: 354px;
    font-size: 2.5rem;
    color: var(--primaryColor500);
}

.at-story__inner {
    flex: 1 0 202px;
}

.at-story__contentWrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 354px;
    padding: var(--marginSmall);
    border-radius: var(--borderRadiusSmall);
    overflow: hidden;
}

.at-story__title {
    z-index: 10;
    color: var(--baseLight100);
    font-size: clamp(1.25rem, 5vw, 2rem); /* 20px to 32px */
}

.at-story__text {
    padding: .5rem var(--marginSmall);
    font-size: var(--smallSize);
    color: var(--primaryColor500);
}

/*
 * Image wrapper
 */

.at-story__imageWrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.at-story__imageWrapper.--hasOverlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 10;
    background: var(--gradientOverlay5);
}

.at-story__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
