﻿.reviews-container {
    column-count: 3;
    column-gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.review-card {
    display: inline-block; 
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background-color: #ffffff;
    position: relative;
    box-sizing: border-box;
    break-inside: avoid; 
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    color: #2563eb;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 1rem 0;
    color: #1f2937;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column; row-gap:3px
}

.r_name {
    font-size: 0.975rem;
    font-weight: 600;
}

.r_title {
    font-size: 0.875rem;
    color: #6b7280;
}

.company-logo {
    margin-top: 1rem;
    max-width: 120px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .reviews-container {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .reviews-container {
        column-count: 1;
    }
}
