/**
 * Homepage testimonials - 2026-09-22.
 * Scoped entirely to #section-testimonials - purely additive, does not
 * touch any shared sitewide selector. Uses the "three-columns" class for
 * its grid (same .section.three-columns .column responsive behaviour
 * already used by the destinations archive: 100% <=1024px, 50% 1024-
 * 1230px, 33.3% >=1230px - desktop 3-up, mobile stacked, no swipe JS
 * needed). Navy #031A36 / brass #A68B5B per brand spec.
 */

#section-testimonials .testimonials-columns {
    align-items: stretch;
}

#section-testimonials .testimonials-columns .column {
    display: flex;
}

#section-testimonials .testimonial-card {
    background: #031A36;
    color: #ffffff;
    border-radius: 8px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

#section-testimonials .testimonial-stars {
    color: #A68B5B;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
}

#section-testimonials .testimonial-quote {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    flex-grow: 1;
}

#section-testimonials .testimonial-quote::before {
    content: '\201C';
}

#section-testimonials .testimonial-quote::after {
    content: '\201D';
}

#section-testimonials .testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(166, 139, 91, 0.35);
}

#section-testimonials .testimonial-name {
    font-weight: 600;
    color: #ffffff;
}

#section-testimonials .testimonial-trip {
    color: #A68B5B;
    font-size: 14px;
}

#section-testimonials .testimonial-date-source {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#section-testimonials .testimonial-source {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

#section-testimonials .testimonials-cta {
    text-align: center;
    margin-top: 32px;
}

#section-testimonials .testimonials-read-all {
    display: inline-block;
    border: 2px solid #031A36;
    color: #031A36;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

#section-testimonials .testimonials-read-all:hover,
#section-testimonials .testimonials-read-all:focus-visible {
    background: #031A36;
    color: #ffffff;
}

@media (max-width: 640px) {
    #section-testimonials .testimonials-columns .column {
        width: 100% !important;
    }

    #section-testimonials .testimonial-card {
        padding: 24px 20px;
    }
}
