/* ============================= */
/* WRAPPER FULL WIDTH */
/* ============================= */
.hemeroteca-wrapper{
    max-width:none !important;
    width:100% !important;
    position:relative;
}

/* ============================= */
/* GRID */
/* ============================= */
.hemeroteca-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:80px 30px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width:1200px){
    .hemeroteca-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:992px){
    .hemeroteca-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .hemeroteca-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hemeroteca-filters{
        flex-direction:column;
        align-items:center;
    }
}

@media (max-width:480px){
    .hemeroteca-grid{
        grid-template-columns:1fr;
    }
}

/* ============================= */
/* ITEMS */
/* ============================= */
.hemeroteca-item{
    width:100%;
    text-align:center;
    box-sizing:border-box;
}

/* ============================= */
/* FILTROS */
/* ============================= */
.hemeroteca-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:50px;
}

/* ============================= */
/* INPUTS */
/* ============================= */
.hemeroteca-filters select,
.hemeroteca-filters input[type="text"]{
    padding:10px 14px;
    border:1px solid #ddd;
    font-size:16px;
}

/* ============================= */
/* IMÁGENES */
/* ============================= */
.hemeroteca-item img{
    width:100%;
    max-width:100%;
    aspect-ratio:3 / 4;
    object-fit:cover;
    background:#f2f2f2;
    display:block;
}

/* ============================= */
/* TEXTOS */
/* ============================= */
.hemeroteca-title{
    margin:12px 0 6px;
    line-height:1.4;
    word-break:break-word;
    font-size:16px;
}

/* ============================= */
/* BOTÓN PDF */
/* ============================= */
.open-pdf{
    display:inline-block;
    margin-top:10px;
    text-decoration:none;
    font-weight:700;
    color:#0073aa;
    transition:.2s;
}

.open-pdf:hover{
    color:#005177;
    text-decoration:underline;
}

.pdf-missing{
    display:inline-block;
    margin-top:10px;
    color:#777;
    font-weight:600;
}

/* ============================= */
/* EMPTY */
/* ============================= */
.hemeroteca-empty{
    text-align:center;
    padding:24px;
    font-size:18px;
}

/* ============================= */
/* LOADER */
/* ============================= */
.hemeroteca-loader{
    display:none;
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.82);
    z-index:50;
    align-items:center;
    justify-content:center;
}

.hemeroteca-loader.is-loading{
    display:flex;
}

.hemeroteca-spinner{
    position:fixed;
    top:50%;
    left:50%;
    width:52px;
    height:52px;
    margin:-26px 0 0 -26px;
    border:5px solid #ddd;
    border-top:5px solid #000;
    border-radius:50%;
    animation:spin .8s linear infinite;
    z-index:51;
}

@keyframes spin{
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}



.open-pdf,
.pdf-missing{
    margin-top:0;
}
