.archive-header{
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

.archive-header h1{
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 42px;
}

.archive-section{
    padding: 70px 0;
}

.volume-card{
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.volume-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.volume-card h2{
    font-weight: 600;
    margin-bottom: 25px;
    color: #1e3c72;
}

.issue-link{
    display: block;
    padding: 10px 0;
    color: #444;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.issue-link:hover{
    color: #2a5298;
    padding-left: 10px;
}

.issue-link::before{
    content: "› ";
    color: #2a5298;
    font-weight: bold;
}

.footer-note{
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #666;
}

@media(max-width:768px){
    .volume-card{
        margin-bottom:30px;
    }
}
