.references-section {
    padding: 80px 0;
}

.references-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.references-section h2 span {
    color: var(--primary);
}

.references-section p.subtitle {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 50px;
}

.reference__masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 992px) {
    .reference__masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .reference__masonry {
        column-count: 1;
    }
}

.reference-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
}

.reference-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.reference__stars {
    color: #fbbf24;
    margin-top: 10px;
}

.reference-user {
    margin-top: 15px;
    /* display: flex; */
    align-items: center;
    /* gap: 10px; */
}

.reference-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}

.reference-user h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.reference-user small {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}