/* ── RDC Countdown ──────────────────────────────────────────────── */

.rdc-countdown-wrap {
    position: relative;
}

.rdc-countdown {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.rdc-cd-unit {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

/* UIKit heading classes add margin-bottom — neutralise it inside the counter */
.rdc-cd-number {
    line-height: 1 !important;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

.rdc-cd-label {
    margin-top: 0.3em;
    margin-bottom: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0.75;
}

.rdc-coming-soon {
    text-align: center;
    margin-bottom: 0.4em !important;
}

/* ── Heartbeat / pulse animations ───────────────────────────────── */
@keyframes rdc-heartbeat {
    0%,100% { transform: scale(1);    }
    14%     { transform: scale(1.08); }
    28%     { transform: scale(1);    }
    42%     { transform: scale(1.05); }
    56%     { transform: scale(1);    }
}

@keyframes rdc-pulse {
    0%,100% { transform: scale(1);    opacity: 1;   }
    50%     { transform: scale(1.06); opacity: 0.9; }
}

.rdc-anim-heartbeat { animation: rdc-heartbeat var(--rdc-anim-dur, 1.5s) ease-in-out infinite; }
.rdc-anim-pulse     { animation: rdc-pulse     var(--rdc-anim-dur, 2s)   ease-in-out infinite; }
