/* =====================================
   Archives Section – No Card Version
===================================== */

.archives-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Section Title */
.archives-section .section-title {
    font-size: 32px;
    color:  #124483; /* blue*/
    font-weight: 700;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

/* Clickable Link */
.archives-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Image */
.archives-link img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 14px;
    border: 3px solid  #F4B400; /* Gold */
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.archives-link:hover img {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(128, 0, 0, 0.35);
}

/* Title */
.archives-title {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color:  #124483;
    letter-spacing: 0.5px;
}

/* =====================================
   Responsive
===================================== */

@media (max-width: 768px) {
    .archives-section .section-title {
        font-size: 26px;
    }

    .archives-link img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .archives-section {
        margin: 40px auto;
    }

    .archives-title {
        font-size: 16px;
    }
}
