/* kuxaQuotes — stil partajat al benzii de citate. Layout-ul (pozitionare, latime) ramane per-pagina. */
.kq-band { position: relative; }

.kq-quote {
    transition: opacity 300ms ease;
    cursor: pointer;
}
.kq-band.kq-fading .kq-quote { opacity: 0; }

.kq-quote-text { }
.kq-quote-text em { font-style: normal; font-weight: 700; color: #E01646; }

.kq-byline {
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
    opacity: .7;
    margin-top: 6px;
}

/* termometru de progres auriu */
.kq-progress {
    position: relative;
    height: 3px;
    background: rgba(0,0,0,.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}
.kq-progress-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, #d4af37, #f3d27a);
    border-radius: 2px;
    transition: width 120ms linear;
}

/* varianta pe fundal inchis */
.kq-band.kq-dark .kq-byline { opacity: .8; }
.kq-band.kq-dark .kq-progress { background: rgba(255,255,255,.15); }
