//**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Intro Section */
.archive-intro {
    text-align: center;
    margin-bottom: 30px;
}

.archive-intro .page-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #222;
}

.archive-intro .archive-description {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4%;
    margin: 0 4% 180px;
}

/* Individual Issue Container */
.issue-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: var(--theme-palette-color-5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.issue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.issue-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.issue-heading {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.issue-copy {
    font-size: 1em;
    color: #666;
    flex-grow: 1;
}

.issue-month {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Issue Link - Reuse btn-primary styles */
.issue-link a {
    @extend .btn-primary;
}

