/* ===============================
   PREMIUM NEXT SESSION HEADER
================================= */

.next-session-li {
    padding: 0;
    margin-right: 15px;
}

.next-session-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;

    padding: 6px 14px;
    border-radius: 30px;

    background: linear-gradient(
        135deg,
        rgba(51,153,103,0.15),
        rgba(51,153,103,0.05)
    );

    border: 1px solid rgba(51,153,103,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    min-width: 340px;
}

.next-session-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.next-session-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #339967;
}

.next-session-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;

    line-height: 1;
}

.next-session-left {
    display: flex;
    flex-direction: column;
}

.next-session-countdown {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;

    text-align: right;

    margin-top: auto;   /* 🔥 THIS IS THE KEY */
}

/* LIVE state */

.next-session-live {
    color: #ffffff !important;
    background: #e10600;
    padding: 4px 10px;
    border-radius: 20px;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% { box-shadow: 0 0 0 0 rgba(225,6,0,0.6); }
    70% { box-shadow: 0 0 0 6px rgba(225,6,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(225,6,0,0); }
}