.editions-section {
    margin-top: 18px;
    margin-bottom: 30px;
}

.editions-card-container {
    background: #ffffff;
    border: 2px solid var(--border, #d8d8d8);
    border-radius: var(--radius, 18px);
    padding: 28px 36px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    box-sizing: border-box;
}

/* ENCABEZADO DE LA TARJETA */
.editions-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 12px;
}

.editions-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.editions-dot {
    width: 14px;
    height: 14px;
    background-color: #d32027;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.editions-main-heading {
    font-family: "Anton", sans-serif;
    font-weight: 100;
    font-size: 26px;
    color: #0f172a;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.editions-click-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    user-select: none;
}

.editions-click-hint i {
    font-size: 22px;
    transform: rotate(-15deg);
}

/* CUADRÍCULA DE 4 COLUMNAS DE EDICIONES */
.editions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 24px;
}

.edition-cover-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.edition-cover-wrapper {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    position: relative;
}

.edition-cover-item:hover .edition-cover-wrapper {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #d32027;
}

.edition-cover-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.edition-cover-month {
    text-align: center;
    margin-top: 12px;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.edition-cover-item:hover .edition-cover-month {
    color: #d32027;
}

/* SIN RESULTADOS */
.no-editions-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: #64748b;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .editions-card-container {
        padding: 24px 20px;
    }

    .editions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .editions-main-heading {
        font-size: 20px;
    }

    .editions-click-hint {
        font-size: 15px;
    }

    .editions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .edition-cover-month {
        font-size: 16px;
        margin-top: 8px;
    }
}

@media (max-width: 420px) {
    .editions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
