/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

.editorial-info{
    max-width:900px;
    margin:40px auto;
    padding:25px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
}

.editorial-logo{
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
}

.editorial-info h1{
    margin-bottom:20px;
}

.editorial-info p{
    margin:10px 0;
}

/* CABECERA EDITORIAL */

.editorial-info{
    max-width:1000px;
    margin:30px auto 50px auto;
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    gap:30px;
    align-items:center;
}

.editorial-logo{
    width:180px;
    max-height:180px;
    object-fit:contain;
    border-radius:10px;
    background:#fafafa;
    padding:15px;
    border:1px solid #eee;
}

.editorial-datos{
    flex:1;
}

.editorial-datos h2{
    margin:0 0 20px 0;
    font-size:32px;
    color:#222;
}

.editorial-item{
    margin:10px 0;
    font-size:17px;
}

.editorial-item strong{
    color:#444;
}

.editorial-link{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#0073aa;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.editorial-link:hover{
    background:#005f8d;
}

.editorial-descripcion{
    margin-top:20px;
    line-height:1.8;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:768px){

    .editorial-info{
        flex-direction:column;
        text-align:center;
    }

}


/* LIBROS */

.libros-home{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin:40px 0;
}

.libro-home-card{
    text-align:center;
}

.libro-home-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#fafafa;
    border-radius:8px;
}

/* EDITORIALES */

.editoriales-home{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
    margin-top:40px;
}

.editorial-card{
    text-align:center;
}

.editorial-card img{
    width:150px;
    height:100px;
    object-fit:contain;
}

.editorial-card a{
    text-decoration:none;
}

/* SECCION NOVEDADES */

.libros-home{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:30px;
    margin:40px 0;
}

.libro-home-card{
    background:#fff;
    border-radius:12px;
    padding:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.libro-home-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.libro-home-card a{
    text-decoration:none;
    color:inherit;
}

/* CONTENEDOR DE PORTADA */

.libro-home-portada{
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:15px;
}

/* PORTADA */

.libro-home-portada img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.libro-home-card h3{
    font-size:16px;
    margin:10px 0;
}

/* SECCION EDITORIALES */

.editoriales-home{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.editorial-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.editorial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.editorial-card a{
    text-decoration:none;
    color:inherit;
}

/* CAJA DEL LOGO */

.editorial-card-logo{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

/* LOGO */

.editorial-card-logo img{
    max-width:180px;
    max-height:100px;
    object-fit:contain;
}

.home-seccion-titulo{
    text-align:center;
    font-size:36px;
    margin:60px 0 30px;
    position:relative;
}

.home-seccion-titulo:after{
    content:'';
    width:80px;
    height:3px;
    background:#0073aa;
    display:block;
    margin:15px auto 0;
}


