/* ── Testimonial Short ── */

.testimonialShort {
    padding: 48px 0;
}

.testimonialShort__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 32px;
    border-top: 1px solid rgba(238, 240, 244, 1);
    border-bottom: 1px solid rgba(238, 240, 244, 1);
}

/* ── Logo ── */

.testimonialShort__logo {
    margin-bottom: 20px;
}

.testimonialShort__logo img {
    height: 28px;
    max-height: 28px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.testimonialShort__inner:hover .testimonialShort__logo img {
    opacity: 1;
    filter: grayscale(0);
}

/* ── Quote ── */

.testimonialShort__quote {
    margin: 0 0 28px;
    position: relative;
}

.testimonialShort__quote::before {
    content: '\201C';
    display: block;
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: rgba(75, 125, 225, 0.2);
    margin-bottom: 8px;
}

.testimonialShort__quote p {
    font-family: Space_Grotesk, sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.7;
    color: rgba(11, 31, 51, 0.85);
    margin: 0;
}

/* ── Author ── */

.testimonialShort__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonialShort__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonialShort__authorInfo {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonialShort__authorName {
    font-family: Lexend, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(11, 31, 51, 1);
    font-style: normal;
}

.testimonialShort__authorRole {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(107, 114, 128, 1);
}

/* ── Responsive ── */

@media (max-width: 640px) {
    .testimonialShort {
        padding: 32px 0;
    }

    .testimonialShort__inner {
        padding: 28px 20px;
    }

    .testimonialShort__quote::before {
        font-size: 36px;
    }
}
