.title-bar {
    width: 10px;
    height: 35px;
    background-color: var(--accent-gold);
    display: inline-block;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 320px; /* ✅ same size for all */
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 12px;
    /* border: 3px solid #E0C58F; */
}

.testimonial-header {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color:var(--dark-navy);

}

/* Scrollable review area */
.testimonial-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 6px;
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.6;
}
