﻿.at-highlightedQuote:not(:has(.at-highlightedQuote__imageWrapper)) {
    max-width: var(--maxArticleWidth);
    margin-inline: auto;
}

.at-highlightedQuote__contentWrapper:has(.at-highlightedQuote__imageWrapper) {
    display: grid;
    align-items: center;
    gap: var(--marginMedium);
}

.at-highlightedQuote__text {
    position: relative;
}

.at-highlightedQuote__text::after {
    content: '';
    position: absolute;
    top: -3rem;
    left: 0;
    background-size: 100%;
    display: block;
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(../../images/quoteIcon.svg);
}

.at-highlightedQuote__quote {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: var(--h2Size);
    font-weight: 700;
    line-height: 1.2;
}

.at-highlightedQuote__imageWrapper {
    position: relative;
    max-width: min(50vw, 300px);
    margin-bottom: var(--marginMedium);
    padding-left: var(--marginMedium);
}

.at-highlightedQuote__imageWrapper::after {
    position: absolute;
    top: 3rem;
    left: 0;
    width: calc(100% - 3rem);
    height: calc(100% - 1rem);
    border-bottom-left-radius: var(--borderRadiusSmall);
    background-color: var(--tertiaryColor100);
    content: '';
    z-index: -1;
}

.at-highlightedQuote__image {
    border-bottom-left-radius: var(--borderRadiusExtraSmall);
}

@media (min-width: 600px) {
    .at-highlightedQuote__contentWrapper:has(.at-highlightedQuote__imageWrapper) {
        grid-template-columns: minmax(200px, 25%) 1fr;
        gap: 5.5rem;
    }

    .at-highlightedQuote__text::after {
        left: -3rem;
    }

    .at-highlightedQuote__imageWrapper {
        order: -1;
    }
}
