body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', 'League Spartan', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.archive-header {
    background: #000;
    margin-top: 150px;
    padding: 2em 0 1em 0;
    text-align: center;
    /* border-bottom removed from base rule, see desktop query below */
}

@media (min-width: 601px) {
    .archive-header {
        border-bottom: 2px solid #111;
    }
}

.archive-header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.08;
}

.archive-subheader {
    text-align: center;
    margin: 0.5em 0 1em 0;
}
.archive-subheader h2 {
    font-weight: 500;
    font-size: 1.35em;
    margin: 0;
}

/* Date buttons row layout */
.date-btns-row {
    display: flex;
    flex-direction: row;
    gap: 0.7em; /* <-- updated to match the "gap" from your other CSS */
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 0.5em;
    flex-wrap: wrap;
    width: 100%;
    /* No max-width, unlimited boxes per row */
}

/* Date button styles remain untouched */
.date-btn {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 8px 14px;
    margin: 0.7em 0;
    font-size: 1.15em;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.17s, color 0.17s, border 0.17s;
    outline: none;
    text-decoration: none;
    display: inline-block;
    min-height: 38px;
    min-width: 80px;
    box-sizing: border-box;
}

/* Hover/focus/active styles untouched */
.date-btn:hover,
.date-btn:focus {
    background: #fff;
    color: #000;
    border-color: #fff;
    text-decoration: none;
}

.date-btn.active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* ----------- MOBILE ONLY ----------- */
@media (max-width: 600px) {
    .archive-header {
        margin-top: 70px;
        padding: 32px 0 10px 0;
        /* No border-bottom, divider line removed on mobile */
    }
    .archive-header h1 {
        font-size: 38px !important;
        line-height: 1.08;
        letter-spacing: 1.2px;
    }
    .archive-subheader h2 {
        font-size: 24px !important;
        font-weight: 500 !important;
    }
    .date-btns-row {
        flex-direction: column;
        gap: 0.18em;
        align-items: stretch;
        margin-top: 0.8em;
        margin-bottom: 0.3em;
        max-width: 100%;
    }
    .date-btn {
        font-size: 29px !important;
        font-weight: bold !important;
        padding: 8px 14px !important;
        min-width: 80px !important;
        min-height: 38px !important;
        border-radius: 8px !important;
        border: 1px solid #fff !important;
        box-sizing: border-box !important;
        background: #000 !important;
        color: #fff !important;
        margin: 0.18em 0 !important;
        width: 100%;
        max-width: 100%;
    }
}
/* ----------- END MOBILE ONLY ----------- */
