/* ===========================
   ALLIANCE & CO — AVIS CLIENTS
   =========================== */

.acav-grid {
    display: grid;
    gap: 24px;
}

.acav-grid--3 { grid-template-columns: repeat(3, 1fr); }
.acav-grid--2 { grid-template-columns: repeat(2, 1fr); }

.acav-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 28px 24px !important;
    box-shadow: none !important;
    border: 1px solid #e8e8e8 !important;
    display: flex !important;
    flex-direction: column !important;
}

.acav-stars {
    color: #FFB400;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.acav-text {
    font-family: inherit;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.acav-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.acav-author {
    font-size: 15px;
    font-weight: 600;
    color: #101D33;
    margin-bottom: 4px;
}

.acav-author {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.acav-badge {
    flex-shrink: 0;
    vertical-align: middle;
}

.acav-source {
    font-size: 12px !important;
    color: #888 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.acav-google-logo {
    flex-shrink: 0;
}

/* ── CARROUSEL ── */
.acav-carousel-wrap {
    position: relative;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

.acav-carousel {
    overflow: hidden !important;
    max-width: 100% !important;
}

.acav-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.acav-carousel-slide {
    flex-shrink: 0;
    padding: 0 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.acav-carousel-slide .acav-card {
    height: 100%;
}

.acav-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.acav-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #101D33 !important;
    background: transparent !important;
    color: #101D33 !important;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.acav-carousel-btn:hover {
    background: #101D33 !important;
    color: #fff !important;
}

.acav-carousel-dots {
    display: flex;
    gap: 8px;
}

.acav-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.acav-carousel-dot.active {
    background: #101D33;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .acav-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .acav-grid--3,
    .acav-grid--2 { grid-template-columns: 1fr; }

    .acav-card { padding: 22px 18px; }
}