.testimonial-grid {
    column-count: 1;
    column-gap: 20px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        column-count: 3;
    }
}

.testimonial-item {
    background-color: #b57f42;
    color: white;
    display: inline-block;
    margin: 0 0 20px;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
}

.testimonial-content {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

.testimonial-name {
    font-weight: normal;
}

#load-more-testimonials {
    display: block;
    margin: 30px auto;
    padding: 10px 30px;
    background: #b57f42;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}