/* GJ Magazine Archive Grid */

.gj-magazine-archive {
    max-width: 1200px;
    margin: 0 auto;
}

.gj-magazine-year-group {
    margin-bottom: 3rem;
}

.gj-magazine-year-heading {
    font-size: 1.8rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.gj-magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gj-magazine-card {
    text-align: center;
}

.gj-magazine-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gj-magazine-card a:hover {
    opacity: 0.85;
}

.gj-magazine-cover {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gj-magazine-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.gj-magazine-card-title {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Single template styles */

.gj-magazine-single {
    max-width: 1000px;
    margin: 0 auto;
}

.gj-magazine-meta {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.gj-magazine-reader {
    margin: 2rem 0;
}

.gj-magazine-no-pdf {
    padding: 2rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    margin: 2rem 0;
}

.gj-magazine-description {
    margin: 2rem 0;
}

.gj-magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
}

.gj-magazine-prev-next a {
    margin-left: 1rem;
}

/* Current issue shortcode */

.gj-magazine-current {
    max-width: 1000px;
    margin: 0 auto;
}

.gj-magazine-current-title {
    margin-bottom: 0.25rem;
}

.gj-magazine-current-date {
    color: #666;
    margin-bottom: 1.5rem;
}

.gj-magazine-current-link {
    margin-top: 1.5rem;
}

.gj-magazine-empty {
    padding: 2rem;
    text-align: center;
    color: #666;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
    .gj-magazine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive: phone */
@media (max-width: 640px) {
    .gj-magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gj-magazine-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
}
