/* ===================================================================
   ASGARD REVIEWS v2
   =================================================================== */
.asg-reviews { position: relative; width: 100%; }

/* === GRID MODE === */
.asg-reviews.is-grid .asg-reviews__viewport { overflow: visible; }
.asg-reviews.is-grid .asg-reviews__track {
    display: grid;
    grid-template-columns: var(--asg-rv-cols, repeat(3, 1fr));
    gap: var(--asg-rv-gap, 16px);
    transform: none !important;
}
.asg-reviews.is-grid .asg-reviews__nav { display: none; }

/* === CAROUSEL MODE === */
.asg-reviews.is-carousel .asg-reviews__viewport {
    overflow: hidden;
    position: relative;
}
.asg-reviews.is-carousel .asg-reviews__track {
    display: flex;
    gap: var(--asg-rv-gap, 16px);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}
.asg-reviews.is-carousel .asg-review {
    flex: 0 0 var(--asg-rv-card-w);
    min-width: 0;
    max-width: var(--asg-rv-card-w);
}

/* === CARD === */
.asg-review {
    background: var(--asg-rv-card-bg, #D0E3F2);
    color: var(--asg-rv-card-text, #141416);
    border-radius: 22px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: background 0.4s ease, color 0.4s ease;
    user-select: none;
}
.asg-review.is-active {
    background: var(--asg-rv-active-bg, #141416);
    color: var(--asg-rv-active-text, #fff);
}
.asg-review.is-active .asg-review__role {
    color: var(--asg-rv-active-role, rgba(255,255,255,0.6));
}
.asg-review.is-active .asg-review__footer {
    border-top-color: var(--asg-rv-active-div, rgba(255,255,255,0.15));
}

/* Stars */
.asg-review__stars {
    color: #243A5F;
    font-size: 16px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

/* Quote */
.asg-review__quote {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-style: normal;
}

/* Footer */
.asg-review__footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(20,20,22,0.12);
}
.asg-review__person { display: flex; align-items: center; gap: 14px; }
.asg-review__avatar {
    width: 48px; height: 48px; border-radius: 50%;
    overflow: hidden; background: #243A5F; flex: none;
}
.asg-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.asg-review__avatar--initials {
    display: grid; place-items: center; color: #fff; font-size: 16px;
}
.asg-review__name { font-size: 15px; }
.asg-review__name a {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid rgba(20,20,22,0.25); padding-bottom: 1px;
}
.asg-review.is-active .asg-review__name a { border-bottom-color: rgba(255,255,255,0.35); }
.asg-review__role { font-size: 12px; color: #3a3a42; margin-top: 4px; }

/* === NAV === */
.asg-reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}
.asg-reviews__nav.is-hidden { display: none; }

/* Arrows */
.asg-reviews__prev,
.asg-reviews__next {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(20,20,22,0.1);
    cursor: pointer; display: grid; place-items: center;
    color: #141416; font-family: inherit;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.asg-reviews__prev:hover,
.asg-reviews__next:hover {
    background: #EEF4FA; border-color: rgba(20,20,22,0.2); transform: scale(1.06);
}
.asg-reviews__prev:active,
.asg-reviews__next:active { transform: scale(0.95); }
.asg-reviews__prev:disabled,
.asg-reviews__next:disabled { opacity: 0.25; cursor: default; transform: none; }

/* Hide arrows/dots per nav style */
.asg-reviews__nav[data-nav="dots"] .asg-reviews__prev,
.asg-reviews__nav[data-nav="dots"] .asg-reviews__next { display: none; }
.asg-reviews__nav[data-nav="arrows"] .asg-reviews__pills { display: none; }

/* Modern pill indicators */
.asg-reviews__pills {
    display: flex;
    gap: 6px;
    align-items: center;
}
.asg-reviews__pill {
    height: 6px;
    width: 6px;
    border-radius: 100px;
    background: rgba(20,20,22,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                background 0.3s ease;
}
.asg-reviews__pill.is-active {
    width: 28px;
    background: #243A5F;
}
.asg-reviews__pill:hover:not(.is-active) {
    background: rgba(20,20,22,0.35);
    width: 10px;
}

/* === DRAG STATE === */
.asg-reviews.is-dragging .asg-reviews__track {
    transition: none !important;
    cursor: grabbing;
}
.asg-reviews.is-carousel .asg-reviews__track {
    cursor: grab;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .asg-review { padding: 28px; min-height: 280px; }
    .asg-review__quote { font-size: 16px; }
    .asg-reviews__nav { margin-top: 28px; gap: 16px; }
}
