.testimonial-grid {
    columns: 3 280px;
    column-gap: 30px;
    padding: 0 20px;
}

.testimonial-item {
    break-inside: avoid; 
    padding: 30px;
    margin-bottom: 30px;
    background: #C3D6C4;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
 	box-shadow: 5px 5px 5px rgba(69, 60, 61, 0.5);
    transition: transform 0.3s ease-in-out;
    color: #444;
}

.testimonial-item:nth-child(2n+1) {
    background-color: #03FEFE52;
    color: #333;
}

.testimonial-item:nth-child(2n) {
    background-color: #e120bb6e;
    color: #333;
}

.testimonial-item:hover {
    transform: scale(108%);

}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-item:nth-child(3n) h3 { color: white; }

@media (max-width: 768px) {
    .testimonial-grid {
        columns: 2 250px;
        column-gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        columns: 1;
        padding: 0 10px;
    }
}