@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

.testimonials-page {
    background: #111;
    color: #fff;
    min-height: 100vh;
}

/* ── HEADER ── */
.testimonials-header {
    padding: 72px 80px 64px;
    text-align: center;
}

.testimonials-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 16px;
}

.testimonials-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1;
}

/* ── MASONRY GRID ── */
.testimonials-grid {
    padding: 0 60px 80px;
    column-count: 3;
    column-gap: 20px;
}

/* ── CARD ── */
.testimonial-card {
    break-inside: avoid;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #161616;
    padding: 28px 28px 32px;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Letter avatar */
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.avatar-teal   { background: #3d8c84; }
.avatar-amber  { background: #9b6b2e; }
.avatar-slate  { background: #4a5568; }
.avatar-rose   { background: #8c3d5e; }

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-rating {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #C9A96E;
    letter-spacing: 0.05em;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    line-height: 1.8;
    color: #888;
    margin: 0;
    text-align: justify;
}

/* ── DIVIDER ── */
.testimonials-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 60px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .testimonials-grid { column-count: 2; padding: 0 40px 64px; }
    .testimonials-header { padding: 56px 40px 48px; }
    .testimonials-title { font-size: 52px; }
}

@media (max-width: 640px) {
    .testimonials-grid { column-count: 1; padding: 0 24px 48px; }
    .testimonials-header { padding: 40px 24px 36px; }
    .testimonials-title { font-size: 36px; }
    .testimonials-divider { margin: 0 24px; }
}
