.at-questionsAnswers {
    margin-top: -2.25em;
}

.questionsAnswers__intro.l-row--center {
    text-align: center;
}

.at-questionsAnswers__question {
    padding: 20px 0 5px;
    background: var(--offWhite);
    border-bottom: 1px solid var(--indigo-50);
}

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

.at-questionsAnswers__button {
    all: inherit;
    position: relative;
    width: 100%;
    padding-right: 1.5em;
    cursor: pointer;
}

.at-questionsAnswers__button:hover:after {
    opacity: .8;
}

.at-questionsAnswers__button::after {
    position: absolute;
    top: .05em;
    right: 0;
    opacity: .5;
    content: '\2304';
    font-family: 'icons';
    speak: none;
}

.at-questionsAnswers__button[aria-expanded='true']::after {
    scale: -1;
}

.at-questionsAnswers__text {
    height: auto;
    overflow: hidden;
    margin-left: -10px;
    padding: 0 2em 0 10px;
    transition: height 0.3s ease;
}

/**
 * Aside
 */

.at-questionsAnswers__info {
    padding: 1.5rem;
    border: 1px solid var(--darker-100);
    border-radius: var(--radius-l);
    font-size: var(--size-small);
    background: var(--color50);
}

.at-questionsAnswers__infoTitle {
    font-size: var(--size-normal);
    margin-bottom: 0.5em;
}

.at-questionsAnswers__infoText {
    position: relative;
    overflow: hidden;
    height: auto;
    transition: height 0.3s ease;
}

.at-questionsAnswers__infoText p:last-child {
    margin-bottom: 0;
}

.at-questionsAnswers__aside--trim::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(0deg,var(--color50) 20%, rgba(0, 0, 0, 0) 100%);
}

.at-questionsAnswers__infoButton {
    display: none;
}

.at-questionsAnswers__aside--trim .at-questionsAnswers__infoButton {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: +1;
    display: block;
    padding: .5em 1em;
    border: none;
    color: var(--sapphire);
    background: transparent;
    cursor: pointer;
}

.at-questionsAnswers__infoButton span {
    position: absolute;
    left: -999em;
}

.at-questionsAnswers.--open .at-questionsAnswers__aside--trim .at-questionsAnswers__infoButton {
    rotate: 180deg;
    animation: none;
}

.at-questionsAnswers__infoButton:hover,
.at-questionsAnswers__infoButton:focus {
    color: var(--indigo);
}

[aria-expanded='false'] .at-questionsAnswers__buttonText--close,
[aria-expanded='true'] .at-questionsAnswers__buttonText--more,
.at-questionsAnswers.--open .at-questionsAnswers__aside--trim::after {
    display: none;
}

@media screen and (min-width: 720px) {
    .at-questionsAnswers__question {
        padding: 1rem 0 .4rem;
    }

    .at-questionsAnswers__info {
        position: absolute;
        margin-left: 2rem;
        overflow: hidden;
    }

    .at-questionsAnswers__aside {
        position: relative;
    }

    .at-questionsAnswers.--open .at-questionsAnswers__aside--trim {
        height: fit-content !important;
    }
}
