@charset "UTF-8";

.quote {
    position: relative;
    overflow: hidden;
    background-color: #D7C485;
    padding: 56px 16px;
}

@media screen and (min-width: 992px) {
    .quote {
        padding: 104px 16px;
    }
}

.quote::before {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-mask: url(../images/pattern.svg) no-repeat center;
    mask: url(../images/pattern.svg) no-repeat center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--beige);
    pointer-events: none;
}

.quote--container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.quote blockquote {
    max-width: 1040px;
    margin: 0;
    text-align: center;
}

.quote p {
    color: var(--black);
    font-size: clamp(22px, 3.2vw, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.2px;
}

.quote p::before,
.quote p::after {
    color: var(--black);
    font-weight: 800;
}

.quote p::before {
    content: "“";
}

.quote p::after {
    content: "”";
}

.quote strong {
    font-weight: 800;
}

.quote--avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote--avatars img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--ocre-light);
    -o-object-fit: cover;
    object-fit: cover;
}

.quote--avatars img+img {
    margin-left: -10px;
}

/*# sourceMappingURL=style.css.map */