.gabarit-quote {
    position: relative;
    padding: 48px 24px;
}

@media screen and (min-width: 768px) {
    .gabarit-quote {
        padding: 112px 24px;
    }
}

.gabarit-quote--container {
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
    max-width: 1096px;
    margin: auto;
}

.gabarit-quote--container>p {
    font-family: var(--visby);
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.48px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .gabarit-quote--container>p {
        font-size: 32px;
        line-height: 48px;
        letter-spacing: 0.64px;
    }
}

.gabarit-quote--container .author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .gabarit-quote--container .author {
        flex-direction: row;
        justify-content: center;
    }
}

.gabarit-quote--container .author-img {
    width: 72px;
    height: 72px;
    position: relative;
}

.gabarit-quote--container .author-img::before {
    content: "";
    position: absolute;
    width: 96px;
    height: 96px;
    border: 1px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gabarit-quote--container .author-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.gabarit-quote--container .author-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media screen and (min-width: 768px) {
    .gabarit-quote--container .author-infos {
        align-items: flex-start;
    }
}

.gabarit-quote--container .author-infos .name {
    font-family: var(--visby);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
}

.gabarit-quote--container .author-infos .function {
    font-family: var(--visby);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.8px;
}

.gabarit-quote>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.gabarit-quote::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(8, 11, 33, 0.6) 0%, rgba(8, 11, 33, 0.6) 100%);
}