/*
Theme Name: Archivo Institucional BCN
Description: Tema calcado BCN con sistema CSS Grid inquebrantable.
Author: Archivo Histórico
Version: 4.0
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #212529;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* Header */
.bcn-header-global { width: 100%; border-bottom: 1px solid #ddd; }
.bcn-top-bar { background-color: #cc2222; color: #fff; padding: 5px 20px; font-size: 0.85rem; font-weight: bold; }
.bcn-main-header { background-color: #fff; padding: 25px 20px; max-width: 1140px; margin: 0 auto; }
.bcn-main-header h1 { margin: 0; font-family: "Georgia", serif; font-size: 1.8rem; }
.bcn-main-header a { color: #cc2222; text-decoration: none; }

/* Contenedor */
.container { max-width: 1140px; margin: 0 auto; padding: 40px 20px; min-height: 70vh; }

.bcn-breadcrumbs { font-size: 0.85rem; color: #cc2222; margin-bottom: 20px; }
.bcn-breadcrumbs span { color: #6c757d; }

.bcn-titulo-documento { font-family: "Georgia", serif; font-size: 2.2rem; color: #cc2222; font-weight: normal; margin: 0 0 10px 0; line-height: 1.3; }
.bcn-fecha-real { font-size: 0.95rem; color: #666; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 15px; }

/* CSS GRID: La solución al diseño roto */
.bcn-grid-layout {
    display: grid;
    grid-template-columns: 1fr 320px; /* 1 fracción para texto, 320px fijos para barra lateral */
    gap: 60px;
    align-items: start; /* Evita que la barra lateral se estire hacia abajo */
}

/* Columna Izquierda (Texto) */
.bcn-contenido { font-size: 1.05rem; color: #333; text-align: justify; }
.bcn-contenido p { margin-top: 0; margin-bottom: 1.5rem; }

/* Columna Derecha (Caja Autoridades) */
.caja-autoridades {
    background-color: #fafafa;
    border-top: 4px solid #cc2222;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 25px;
    border-radius: 0 0 4px 4px;
}
.caja-autoridades h3 { font-size: 1.1rem; margin: 0 0 20px 0; color: #222; }

/* Lista Autoridades */
.lista-autoridades { list-style: none; padding: 0; margin: 0; }
.lista-autoridades li { display: flex; align-items: center; margin-bottom: 15px; }
.avatar-autoridad {
    width: 40px; height: 40px; border-radius: 50%; background-color: #e2e8f0; margin-right: 15px;
    flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.avatar-autoridad img { width: 100%; height: 100%; object-fit: cover; }
.lista-autoridades a { color: #0056b3; text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.lista-autoridades a:hover { text-decoration: underline; color: #003d82; }

/* Footer */
.bcn-footer { background-color: #212529; color: #fff; padding: 40px 20px; text-align: center; margin-top: 50px; border-top: 4px solid #cc2222; }

/* Móviles */
@media (max-width: 850px) {
    .bcn-grid-layout { grid-template-columns: 1fr; /* Pasa a 1 sola columna en móviles */ }
}