/* --- WRAPPER --- */
.kps-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* --- SLIDER BOX --- */
.kps-slider {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* --- PROVERB TEXT (hero style like your second screenshot) --- */
.kps-proverb {
    font-family: "Garamond", serif;
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #222;
    line-height: 1.3;
    margin-bottom: 35px;
}

/* --- LABELS --- */
.kps-label {
    font-weight: 700;
    font-size: 15px;
    margin-top: 20px;
    color: #333;
}

/* --- TEXT --- */
.kps-meta {
    margin-top: 6px;
    font-size: 17px;
    color: #555;
}

/* --- FOOTER CONTROLS (ARROWS + DOTS) --- */
.kps-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.kps-arrow {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}

.kps-arrow:hover {
    color: #000;
}

/* --- THREE DOT PAGINATION --- */
.kps-pagination {
    text-align: center;
    margin-top: 25px;
}

.kps-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: 0.2s;
}

.kps-dot.active {
    background: #333;
}
