/* public/css/archive.css */

.page-archive { background: #fff; }

/* ─── Year buckets row ─────────────────────────────────────────────── */

.archive-years {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    margin: 0 0 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.archive-year {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.archive-year:hover {
    background: #f5f5f5;
    color: #000;
}

.archive-year.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Archive cards: subtle visual treatment to signal "past" */
.archive .rep-card-link:hover .rep-card-thumb {
    transform: scale(1.02);
}

.archive .rep-card-thumb {
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}

.archive .rep-card-link:hover .rep-card-thumb {
    filter: grayscale(0%);
}

/* No nearest-performance line for archive cards — they're all past.
   Hide the empty "Скоро" placeholder. */
.archive .rep-card-when-empty {
    display: none;
}

/* ─── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .archive-years {
        padding: 1rem 0.5rem;
        gap: 0.25rem;
    }
    .archive-year {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}