/* ============================================================
   Arman_Stipt — Leverdatum widget
   Stijl passend bij banden-kopen.nl homepage design
   ============================================================ */

.bk-stipt {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0 14px;
    padding: 11px 16px;
    background: #f0faf4;
    border: 1.5px solid #b6dfc6;
    border-left: 4px solid #16a34a;
    border-radius: 6px;
    font-family: 'Barlow', 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    max-width: 100%;
    box-sizing: border-box;
}

.bk-stipt__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-stipt__icon {
    flex: 0 0 auto;
    color: #16a34a;
    display: flex;
    align-items: center;
}

.bk-stipt__content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    line-height: 1.4;
}

.bk-stipt__label {
    color: #4a5568;
    font-weight: 400;
}

.bk-stipt__date {
    color: #15803d;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
}

/* Cutoff melding — oranje banner stijl passend bij bk-usp-strip */
.bk-stipt__cutoff {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    padding: 5px 10px;
    background: rgba(232, 85, 42, 0.08);
    border: 1px solid rgba(232, 85, 42, 0.25);
    border-radius: 4px;
    font-size: 1.2rem;
    color: #c94220;
    font-weight: 600;
}

.bk-stipt__cutoff::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e8552a;
    flex-shrink: 0;
    animation: bk-stipt-pulse 1.6s ease-in-out infinite;
}

@keyframes bk-stipt-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}