/* ================================================================
GLOBAL SITE BACKGROUND
Uses Customizer variables from functions.php
================================================================ */

html {
    background: var(--global-bg-color, #000);
}

html::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image: var(--global-bg-image);
    background-size: var(--global-bg-size);
    background-position: var(--global-bg-position);
    background-repeat: no-repeat;
    background-attachment: var(--global-bg-attachment);

    pointer-events: none;
}

/* ================================================================
   GLOBAL QUOTES — COMPLETE SYSTEM
================================================================ */

/* Section base */
.ktv-quotes {
    position: relative;
    overflow: hidden;
}

.ktv-quotes__inner {
    position: relative;
    z-index: 2;
}

/* Background overlay */
.ktv-quotes::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Slider wrapper */
.ktv-quotes__slider {
    display: flex;
    transition: transform 0.6s ease;
}

/* Individual slide */
.ktv-quote {
    flex: 0 0 100%;
    padding: 40px 20px;
}

/* Quotation mark */
.ktv-quote__mark {
    font-size: 80px;
    line-height: 0.6;
    display: block;
    margin-bottom: 20px;
    opacity: 0.4;
    font-family: Georgia, serif;
}

/* Quote text */
.ktv-quote__blockquote {
    margin: 0;
    padding: 0;
}

.ktv-quote__blockquote p {
    margin: 0 0 20px;
}

/* Author section */
.ktv-quote__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.ktv-quote__avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.ktv-quote__cite {
    font-style: normal;
    text-align: left;
}

.ktv-quote__author {
    display: block;
    font-weight: 700;
}

.ktv-quote__role {
    display: block;
    font-size: 0.85em;
    opacity: 0.7;
}

/* Style Variants */

/* CENTERED */
.ktv-quotes--centered .ktv-quote {
    max-width: 800px;
    margin: 0 auto;
}

/* CARD */
.ktv-quotes--card .ktv-quote {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

/* MINIMAL */
.ktv-quotes--minimal .ktv-quote__mark {
    display: none;
}

.ktv-quotes--minimal .ktv-quote {
    padding: 20px 0;
}

/* Navigation dots */
.ktv-quotes__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.ktv-quotes__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.ktv-quotes__dot.active {
    opacity: 1;
}

/* Arrows */
.ktv-quotes__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    background: transparent;
    border: none;
}

.ktv-quotes__arrow--prev { left: 10px; }
.ktv-quotes__arrow--next { right: 10px; }
