﻿.archive-wrapper {
    padding: 30px 0 60px 0;
}

.archive-card {
    border-radius: 18px;
    border: none;
    overflow: hidden;
}

.year-block {
    margin-bottom: 50px;
}

.year-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.issue-card {
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}

    .issue-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

.current-issue {
    border: 2px solid #0d6efd !important;
    background: #f8fbff;
    box-shadow: 0 15px 40px rgba(13,110,253,0.15);
}

.current-badge {
    font-size: 11px;
    background: #0d6efd;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.issue-cover {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.issue-title {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.issue-title {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap; /* keeps responsive behavior */
}

.current-badge {
    white-space: nowrap;
}

.issue-meta {
    font-size: 13px;
    color: #6c757d;
}

.issue-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

    .issue-link:hover {
        text-decoration: underline;
    }

.search-highlight {
    font-weight: 600;
    color: #0d6efd;
    background-color: rgba(13,110,253,0.12);
    padding: 2px 4px;
    border-radius: 4px;
}


