/**
 * Testimonial Module - Styles
 */

.cj-testimonial {
    --cj-testimonial-max-width: 920px;
    --cj-testimonial-quote-size: 42px;
    --cj-testimonial-quote-weight: 900;
    --cj-testimonial-avatar-size: 46px;
    box-sizing: border-box;
    width: 100%;
    color: #15130f;
}

.cj-testimonial *,
.cj-testimonial *::before,
.cj-testimonial *::after {
    box-sizing: border-box;
}

.cj-testimonial--dark {
    color: #f5f2ec;
}

.cj-testimonial--orange {
    color: #0b0a09;
}

.cj-testimonial--align-left {
    text-align: left;
}

.cj-testimonial--align-center {
    text-align: center;
}

.cj-testimonial--align-right {
    text-align: right;
}

.cj-testimonial__inner {
    width: 100%;
    max-width: min(100%, var(--cj-testimonial-max-width));
}

.cj-testimonial--align-center .cj-testimonial__inner {
    margin-inline: auto;
}

.cj-testimonial--align-right .cj-testimonial__inner {
    margin-left: auto;
}

.cj-testimonial--layout-card .cj-testimonial__inner {
    padding: clamp(28px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.72);
    border-top: 5px solid #eb5d0f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.cj-testimonial--dark.cj-testimonial--layout-card .cj-testimonial__inner {
    background: rgba(11, 10, 9, 0.82);
}

.cj-testimonial__title {
    margin: 0 0 28px;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
}

.cj-testimonial__title-accent,
.cj-testimonial__mark {
    color: #eb5d0f;
}

.cj-testimonial__mark {
    display: block;
    margin-bottom: 6px;
    padding: 0;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(56px, 7vw, 94px);
    font-weight: 900;
    line-height: 0.62;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cj-testimonial__quote {
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 0;
    box-shadow: none;
    font-family: "Saira Condensed", sans-serif;
    font-size: var(--cj-testimonial-quote-size);
    font-weight: var(--cj-testimonial-quote-weight);
    line-height: 1.1;
    text-transform: uppercase;
    color: currentColor;
}

.cj-testimonial__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    text-align: left;
}

.cj-testimonial--align-center .cj-testimonial__author {
    justify-content: center;
}

.cj-testimonial--align-right .cj-testimonial__author {
    justify-content: flex-end;
}

.cj-testimonial__avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: var(--cj-testimonial-avatar-size);
    height: var(--cj-testimonial-avatar-size);
    overflow: hidden;
    border-radius: 999px;
    background: #0b0a09;
    color: #f5f2ec;
    font-family: "Saira Condensed", sans-serif;
    font-size: calc(var(--cj-testimonial-avatar-size) * 0.38);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.cj-testimonial__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cj-testimonial__name {
    font-family: "Saira Condensed", sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.cj-testimonial__role {
    margin-top: 7px;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #6f685e;
}

.cj-testimonial--dark .cj-testimonial__role {
    color: rgba(245, 242, 236, 0.66);
}

@media (max-width: 760px) {
    .cj-testimonial__quote {
        font-size: clamp(24px, 9vw, var(--cj-testimonial-quote-size));
    }

    .cj-testimonial__author {
        margin-top: 26px;
    }
}
