/* ---------------------- */
/* ESTILOS GENERALES OJS 3.5 */
/* ---------------------- */

/* Fuentes y cuerpo */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Contenedor principal (adaptado a OJS) */
.pkp_structure_main {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ---------------------- */
/* CABECERA (HEADER) OJS */
/* ---------------------- */
.pkp_structure_head {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

/* Logo */
.pkp_site_name a {
    display: inline-block;
}

.pkp_site_name img {
    height: 60px;
    width: auto;
}

/* Menú principal */
.pkp_navigation_primary > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_navigation_primary li {
    margin-left: 20px;
}

.pkp_navigation_primary a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    padding: 5px 10px;
}

/* ---------------------- */
/* CONTENIDO PRINCIPAL */
/* ---------------------- */

/* Artículo destacado */
.current_issue {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.current_issue img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.current_issue h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin: 20px 0;
}

/* Grid de artículos (para lista de artículos) */
.articles {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Tarjetas de artículos */
.article-summary {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-summary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-summary h3 {
    font-family: 'Playfair Display', serif;
    padding: 0 15px;
    margin: 15px 0 10px;
}

.article-summary .meta {
    padding: 0 15px 15px;
}

/* ---------------------- */
/* PIE DE PÁGINA (FOOTER) */
/* ---------------------- */
.pkp_structure_footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.pkp_footer_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_footer_content li {
    display: inline;
    margin: 0 15px;
}

.pkp_footer_content a {
    color: #fff;
    text-decoration: none;
}

/* Iconos redes sociales */
.pkp_social_icons img {
    width: 30px;
    margin: 10px;
}

/* ---------------------- */
/* ELEMENTOS ESPECÍFICOS OJS */
/* ---------------------- */

/* Botones principales */
.pkp_button_primary {
    background-color: #1a237e;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 700;
}

/* Títulos de sección */
.page_title {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 30px;
}

/* Formularios */
.pkp_form input[type="text"],
.pkp_form input[type="email"],
.pkp_form textarea {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 3px;
    width: 100%;
}