/* ===============================
   Bottom Date Navigation Strip
   =============================== */

.date-strip {
    margin-top: 0px;
    background: #f6f7fb;
    padding: 32px 0;
}

.date-strip-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #313957;
}

.date-strip-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.date-strip-item {
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    color: #313957;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.date-strip-item:hover {
    background: #313957;
    color: #ffffff;
}

/* Highlight today */
.date-strip-item.active {
    background: #FF9925;
    color: #ffffff;
    font-weight: 600;
}

/* Mobile behaviour */
@media (max-width: 767px) {
    .date-strip {
        padding: 24px 0;
    }

    .date-strip-links {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .date-strip-links::-webkit-scrollbar {
        display: none;
    }
}