.match-aura-ppp-kk {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: #f7f2f3;
    font-family: "Segoe UI", sans-serif;
}

/* TITLE */
.match-aura-ppp-kk h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* WRAPPER */
.match-aura-ppp-kk .outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ARROWS */
.match-aura-ppp-kk .arrow {
    font-size: 40px;
    font-weight: bold;
    color: #8b0000;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}
.match-aura-ppp-kk .arrow:hover { color: #c40000; }

/* VIEWPORT — Show 2 circles on desktop */
.match-aura-ppp-kk .viewport {
    width: 720px; /* 320px x2 + 40 gap */
    overflow: hidden;
}

/* TRACK */
.match-aura-ppp-kk .track {
    display: flex;
    gap: 54px;
    transition: 0.4s ease-in-out;
}

/* CIRCLE BOX (DESKTOP SIZE) */
.match-aura-ppp-kk .box {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}

/* IMAGE */
.match-aura-ppp-kk .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YELLOW BAND */
.match-aura-ppp-kk .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 95px;
    background: linear-gradient(#ffd400, #e0b700);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    text-align: center;
    padding-top: 15px;
}

.match-aura-ppp-kk .title {
    font-size: 20px;
    font-weight: 600;
    color: #520000;
}
.match-aura-ppp-kk .sub {
    font-size: 18px;
    font-weight: bold;
    color: #520000;
}

/* ---------------------------- */
/* MOBILE FIXED OPTIMIZED VIEW */
/* ---------------------------- */
@media(max-width: 768px) {

    /* show only 1 circle */
    .match-aura-ppp-kk .viewport {
        width: 260px; 
    }

    /* smaller circle */
    .match-aura-ppp-kk .box {
        width: 220px;
        height: 220px;
        
    }

    /* yellow band */
    .match-aura-ppp-kk .caption {
        height: 70px;
        padding-top: 10px;
    }

    .match-aura-ppp-kk .title {
        font-size: 16px;
    }

    .match-aura-ppp-kk .sub {
        font-size: 14px;
    }

    /* smaller arrows */
    .match-aura-ppp-kk .arrow {
        font-size: 30px;
        padding: 5px;
    }
}