/* ============================================================================
   WZH Reviews — carousel (brand-tokens via :root van wzh-brand.php)
   ========================================================================== */
.wzh-reviews {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 3.5rem;
    color: var(--wzh-white, #fff);
}

.wzh-reviews__track {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr;
}

.wzh-reviews__slide {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 450ms ease, transform 450ms ease, visibility 0s linear 450ms;
}
.wzh-reviews__slide[data-active="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 450ms ease, transform 450ms ease, visibility 0s;
}

.wzh-reviews__stars {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--wzh-orange, #F25323);
    margin-bottom: 1.25rem;
}
.wzh-reviews__stars-empty { color: rgba(255,255,255,0.25); }

.wzh-reviews__quote {
    font: 400 1.25rem/1.65 var(--wzh-font-body, 'Soleil', sans-serif);
    font-style: italic;
    color: var(--wzh-white, #fff);
    margin: 0 0 1.75rem;
    max-width: 52ch;
    margin-inline: auto;
    position: relative;
}
.wzh-reviews__quote::before {
    content: "\201C";
    display: block;
    font-family: var(--wzh-font-brush, 'Lazer84', sans-serif);
    font-size: 3rem;
    line-height: 0.5;
    color: var(--wzh-orange, #F25323);
    margin-bottom: 0.75rem;
}

.wzh-reviews__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    text-align: center;
}
.wzh-reviews__name {
    font: 700 0.875rem/1 var(--wzh-font-body);
    color: var(--wzh-orange, #F25323);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.wzh-reviews__meta {
    font: 400 0.8125rem/1 var(--wzh-font-body);
    color: rgba(255,255,255,0.55);
}

/* ---- Arrows ---- */
.wzh-reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease;
    z-index: 2;
}
.wzh-reviews__arrow svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }
.wzh-reviews__arrow:hover,
.wzh-reviews__arrow:focus-visible {
    color: var(--wzh-orange, #F25323);
    background: rgba(242, 83, 35, 0.08);
    outline: none;
}
.wzh-reviews__arrow--prev { left: 0; }
.wzh-reviews__arrow--next { right: 0; }

/* ---- Dots ---- */
.wzh-reviews__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 2rem;
}
.wzh-reviews__dots button {
    width: 8px; height: 8px;
    padding: 0;
    background: rgba(255,255,255,0.3);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background 220ms ease, width 220ms ease;
}
.wzh-reviews__dots button[aria-current="true"] {
    width: 26px;
    background: var(--wzh-orange, #F25323);
}
.wzh-reviews__dots button:hover { background: rgba(255,255,255,0.6); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .wzh-reviews__slide { transition: none; }
}

/* ---- Small screens ---- */
@media (max-width: 540px) {
    .wzh-reviews { padding: 0 2.5rem; }
    .wzh-reviews__quote { font-size: 1.0625rem; }
}
