* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gloucester MT Extracomprimida", "Gloucester MT Extra Condensed", serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #06143A;
  padding: 18px 40px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#navbar .logo-grande {
  display: block;
  margin-bottom: 14px;
}

#navbar .logo-grande img {
  width: 300px;
  height: auto;
  display: block;
}

#navbar .logo-pequeno {
  display: none;
}

#navbar .logo-pequeno img {
  width: 60px;
  height: auto;
  display: block;
}

#navbar .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  transition: all 0.3s ease;
}

#navbar .menu a {
  text-decoration: none;
  color: #F6DE88;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#navbar .menu a:hover {
  border-bottom: 2px solid #F6DE88;
}

/* NAVBAR COMPRIMIDO */
#navbar.scrolled {
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 8px 40px !important;
}

#navbar.scrolled .logo-grande {
  display: none !important;
}

#navbar.scrolled .logo-pequeno {
  display: block !important;
  margin-bottom: 0 !important;
}

#navbar.scrolled .menu {
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 36px !important;
}

#navbar.scrolled .menu a {
  font-size: 13px !important;
}

/* ESTRUCTURA PRINCIPAL */
.contenedor-principal {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
  padding: 40px;
}

.contenido-general {
  background: white;
  padding: 30px;
  min-height: 600px;
}

.columna-info {
  background: white;
  padding: 25px;
  min-height: 600px;
}

.contenido-general h2,
.columna-info h2 {
  margin-bottom: 20px;
}

.bloque-contenido {
  margin-top: 30px;
  padding: 20px;
  border-top: 1px solid #ccc;
}

/* CARRUSEL */
.seccion-carrusel h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #06143A;
  letter-spacing: 1px;
}

.carrusel-contenedor {
  position: relative;
}

.carrusel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-articulo {
  background: #ffffff;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.card-destacada {
  grid-column: span 2;
}

.card-articulo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.card-destacada img {
  height: 300px;
}

.card-texto {
  padding: 18px;
}

.card-texto h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #06143A;
}

.card-texto p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #333;
}

.boton-leer {
  display: inline-block;
  background: #06143A;
  color: #F6DE88;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.boton-leer:hover {
  background: #F6DE88;
  color: #06143A;
}

.flecha {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #06143A;
  color: #F6DE88;
  border: none;
  width: 38px;
  height: 46px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.flecha-izquierda {
  left: -18px;
}

.flecha-derecha {
  right: -18px;
}

.flecha:hover {
  background: #F6DE88;
  color: #06143A;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contenedor-principal {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .carrusel {
    grid-template-columns: 1fr;
  }

  .card-destacada {
    grid-column: span 1;
  }

  .flecha {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px 14px;
  }

  #navbar .logo-grande img {
  width: 180px;
    }

  .navbar.scrolled {
    padding: 8px 20px;
  }

  .navbar.scrolled .logo-pequeno img {
    width: 45px;
  }

 #navbar .menu {
  flex-direction: column;
  gap: 12px;
}

#navbar.scrolled .menu {
  flex-direction: row !important;
  gap: 14px !important;
}

  .navbar.scrolled .menu {
    flex-direction: row;
    gap: 14px;
  }

  .navbar.scrolled .menu a {
    font-size: 11px;
  }
}

#navbar {
  min-height: 140px;
}

#navbar.scrolled {
  min-height: 60px;
}

#navbar.scrolled .logo-pequeno img {
  width: 45px;
}

#navbar .logo-grande img {
  transition: all 0.3s ease;
}

#navbar.scrolled .logo-grande img {
  transform: scale(0.8);
}

body {
  padding-top: 150px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #F6DE88;
  margin: 6px 0;
}

@media (max-width: 768px) {
  #navbar {
    position: fixed;
  }

  #navbar .menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 28px;
  }

  #navbar .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
  }

  #navbar .menu.activo {
    display: flex;
  }

  #navbar.scrolled .menu-toggle {
    top: 18px;
  }

  #navbar.scrolled .menu {
    position: absolute;
    top: 60px;
    left: 0;
    background: #06143A;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  #navbar.scrolled .menu.activo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #06143A;
    padding: 20px 0;

    margin-top: 0 !important;
  }

  #navbar.scrolled .menu.activo a {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  #navbar {
    min-height: 70px;
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #navbar .logo-grande {
    margin-bottom: 0;
  }

  #navbar .logo-grande img {
    width: 155px;
  }

  #navbar .menu-toggle {
    position: static;
    display: block;
  }

  #navbar .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #06143A;
    margin-top: 0 !important;
    padding: 20px 0;
  }
}

/* PÁGINA DE ARTÍCULO */
.pagina-articulo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.articulo-contenedor {
  max-width: 820px;
  margin: 0 auto;
}

.articulo-header {
  text-align: center;
  margin-bottom: 36px;
}

.articulo-categoria {
  color: #06143A;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.articulo-header h1 {
  color: #06143A;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 18px;
}

.articulo-subtitulo {
  font-size: 24px;
  line-height: 1.3;
  color: #444;
  margin-bottom: 18px;
}

.articulo-meta {
  color: #777;
  font-size: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.articulo-imagen-principal {
  margin-bottom: 42px;
}

.articulo-imagen-principal img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.articulo-cuerpo {
  font-size: 22px;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.articulo-cuerpo p {
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 768px) {
  .pagina-articulo {
    padding: 40px 20px;
  }

  .articulo-header h1 {
    font-size: 38px;
  }

  .articulo-subtitulo {
    font-size: 20px;
  }

  .articulo-cuerpo {
    font-size: 19px;
  }
}

/* DROPDOWN */

.dropdown {
  position: relative;
  display: flex;
  justify-content: center;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #F6DE88;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0B1F55;
  border-top: 1px solid rgba(246, 222, 136, 0.35);
  padding: 14px 0;
  min-width: 220px;
  z-index: 1000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #F6DE88;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
}

.dropdown-menu a:hover {
  background: rgba(246, 222, 136, 0.15);
  color: #F6DE88;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 10px 0;
    background: #0B1F55;
    }
    }

  .dropdown-menu.activo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: center;
  }


@media (max-width: 768px) {
  .dropdown {
    width: 100%;
    display: block;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    min-width: 100%;
  }

  .dropdown-menu.activo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .dropdown-menu {
    top: 100% !important;
    margin-top: 0 !important;
  }
}

#navbar {
  position: fixed;
  width: 100%;
}

/* PÁGINA DE CATEGORÍA */
.pagina-categoria {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.categoria-header {
  text-align: center;
  margin-bottom: 50px;
}

.categoria-header h1 {
  color: #06143A;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 18px;
}

.categoria-header p {
  color: #444;
  font-size: 22px;
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto;
}

.categoria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .categoria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categoria-header h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .pagina-categoria {
    padding: 40px 20px;
  }

  .categoria-grid {
    grid-template-columns: 1fr;
  }

  .categoria-header h1 {
    font-size: 38px;
  }

  .categoria-header p {
    font-size: 19px;
  }
}

/* NOSOTROS */
.pagina-nosotros {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* HERO */
.nosotros-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.nosotros-texto h1 {
  font-size: 56px;
  color: #06143A;
  margin-bottom: 20px;
}

.nosotros-texto p {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  text-align: justify;
}

.nosotros-imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* EQUIPO */
.equipo {
  text-align: center;
}

.equipo h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #06143A;
}

.equipo-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.miembro {
  width: 160px;
}

.miembro img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.miembro h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #06143A;
}

.miembro p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nosotros-hero {
    grid-template-columns: 1fr;
  }

  .nosotros-texto h1 {
    font-size: 40px;
  }

  .nosotros-texto p {
    font-size: 18px;
  }
}

.miembro img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CONTACTO */
.pagina-contacto {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contacto-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contacto-formulario h1 {
  font-size: 56px;
  color: #06143A;
  margin-bottom: 16px;
}

.contacto-formulario p {
  font-size: 20px;
  color: #444;
  margin-bottom: 28px;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 18px;
  outline: none;
}

.contacto-formulario input:focus,
.contacto-formulario textarea:focus {
  border-color: #06143A;
}

.contacto-formulario button {
  background: #06143A;
  color: #F6DE88;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}

.contacto-formulario button:hover {
  background: #0B1F55;
}

.contacto-imagen {
  height: 100%;
}

.contacto-imagen img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .pagina-contacto {
    padding: 40px 20px;
  }

  .contacto-contenedor {
    grid-template-columns: 1fr;
  }

  .contacto-formulario h1 {
    font-size: 40px;
  }
}

/* EDICIÓN FLIPBOOK */
.pagina-edicion {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 40px 20px;
}

.edicion-header {
  text-align: center;
  margin-bottom: 28px;
}

.edicion-header h1 {
  color: #06143A;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}

.edicion-header p {
  color: #444;
  font-size: 20px;
}

.flipbook-zona {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botón pantalla completa */
.btn-pantalla-completa {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 20, 58, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pantalla-completa:hover {
  background: rgba(6, 20, 58, 0.65);
  color: #ffffff;
}

/* Contenedor principal */
.flipbook-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 160px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: auto;
  background: #f3f3f3;
}

#flipbook {
  width: 1000px;
  height: 1414px;
  image-rendering: auto;
  transform-origin: center center;
}

/* Flechas transparentes encima del libro */
.flecha-flip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 20, 58, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 26px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.flecha-flip:hover {
  background: rgba(6, 20, 58, 0.55);
  color: #ffffff;
}

.flecha-flip-izquierda {
  left: 18px;
}

.flecha-flip-derecha {
  right: 18px;
}

.contador-flipbook {
  margin-top: 14px;
  color: #06143A;
  font-size: 15px;
}

/* Pantalla completa */
.flipbook-wrapper:fullscreen {
  width: 100vw;
  height: 100vh;
  background: #f7f7f7;
}

.flipbook-wrapper:fullscreen #flipbook {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .pagina-edicion {
    padding: 30px 10px;
  }

  .edicion-header h1 {
    font-size: 36px;
  }

  .flipbook-wrapper {
    width: 100%;
    height: 72vh;
  }

  .btn-pantalla-completa {
    align-self: center;
    margin-right: 0;
  }

    .flecha-flip {
    width: 48px;
    font-size: 32px;
  }
}

.flipbook-wrapper:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none;
  max-height: none;
}

.flipbook-wrapper:fullscreen #flipbook {
  width: 100vw !important;
  height: 100vh !important;
}

.stf__item img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* BOTONES ZOOM */
.btn-pantalla-completa,
.btn-zoom {
  position: absolute;
  right: 14px;
  z-index: 9999;

  width: 36px;
  height: 36px;

  border: none;
  border-radius: 50%;

  background: rgba(6, 20, 58, 0.45);
  color: rgba(255, 255, 255, 0.95);

  font-size: 22px;
  line-height: 1;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.2s ease;
}

.btn-pantalla-completa {
  top: 14px;
}

#btnZoomIn {
  top: 58px;
}

#btnZoomOut {
  top: 102px;
}

.btn-pantalla-completa:hover,
.btn-zoom:hover {
  background: rgba(6, 20, 58, 0.75);
  color: #ffffff;
}

/* EVENTOS */
.pagina-eventos {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
}

.eventos-header {
  text-align: center;
  margin-bottom: 50px;
}

.eventos-header h1 {
  font-size: 56px;
  color: #06143A;
  margin-bottom: 14px;
}

.eventos-header p {
  font-size: 20px;
  color: #444;
}

.eventos-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
}

/* CALENDARIO */
.calendario-panel {
  background: #fff;
}

.calendario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.calendario-header h2 {
  color: #06143A;
  font-size: 28px;
}

.calendario-header button {
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #06143A;
}

.dias-semana {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 12px;
  text-align: center;
  color: #666;
}

.calendario-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.dia {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #ddd;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: 0.2s ease;
}

.dia:hover {
  background: rgba(246, 222, 136, 0.25);
}

.dia.evento {
  background: #06143A;
  color: #F6DE88;
  border: none;
}

.dia.activo {
  background: #F6DE88;
  color: #06143A;
  border: none;
}

/* EVENTOS */
.eventos-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.evento-card {
  border: 1px solid #ddd;
  overflow: hidden;
}

.evento-titulo {
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.evento-info h3 {
  color: #06143A;
  font-size: 24px;
  margin-bottom: 6px;
}

.evento-info span {
  color: #666;
  font-size: 15px;
}

.evento-descripcion {
  display: none;
  padding: 0 22px 22px;
  color: #333;
  line-height: 1.5;
}

.evento-card.activo .evento-descripcion {
  display: block;
}

@media (max-width: 900px) {
  .eventos-layout {
    grid-template-columns: 1fr;
  }
}

/* PÁGINA PRÓXIMAMENTE */
.pagina-proximamente {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.pagina-proximamente h1 {
  font-size: 56px;
  color: #06143A;
  margin-bottom: 16px;
}

.pagina-proximamente p {
  font-size: 28px;
  color: #444;
}

/* EVENTOS EN HOME */
.seccion-eventos-home {
  margin-top: 60px;
}

.seccion-eventos-home h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #06143A;
  letter-spacing: 1px;
}

.eventos-home-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.evento-home-card {
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
}

.evento-home-titulo {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.evento-home-info h3 {
  color: #06143A;
  font-size: 24px;
  margin-bottom: 6px;
}

.evento-home-info span {
  color: #666;
  font-size: 15px;
}

.evento-home-icono {
  color: #06143A;
  font-size: 22px;
}

.evento-home-descripcion {
  display: none;
  padding: 0 22px 22px;
  color: #333;
  line-height: 1.5;
  font-size: 17px;
}

.evento-home-card.activo .evento-home-descripcion {
  display: block;
}

.eventos-home-ver-mas {
  text-align: center;
  margin-top: 24px;
}

.eventos-home-ver-mas a {
  display: inline-block;
  background: #06143A;
  color: #F6DE88;
  text-decoration: none;
  padding: 10px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eventos-home-ver-mas a:hover {
  background: #0B1F55;
}

/* FOOTER */
.footer-converso {
  width: 100%;
  background: #06143A;
  padding: 12px 30px;
  margin-top: 80px;
}

.footer-contenido {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-izquierda,
.footer-centro,
.footer-derecha {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-converso span,
.footer-converso a {
  color: #F6DE88;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.footer-converso a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-izquierda,
  .footer-centro,
  .footer-derecha {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-redes {
  gap: 14px;
}

.footer-icono {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icono svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  background: transparent;
}

.footer-icono:hover svg {
  opacity: 0.75;
}

/* FEED DE NOTAS */
.columna-feed {
  max-height: 720px;
  overflow-y: auto;
}

.columna-feed h2 {
  color: #06143A;
  font-size: 28px;
  margin-bottom: 20px;
}

.feed-notas {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nota-feed {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}

.nota-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}

.nota-meta strong {
  color: #06143A;
  font-size: 18px;
}

.nota-meta span {
  color: #777;
  font-size: 13px;
}

.nota-contenido p {
  color: #222;
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.nota-contenido a {
  color: #06143A;
  font-size: 15px;
  text-decoration: underline;
}

.nota-contenido img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}

.imagen-cuerpo-articulo {
  margin: 36px 0;
}

.imagen-cuerpo-articulo img {
  width: 100%;
  height: auto;
  display: block;
}

.imagen-cuerpo-articulo figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
  text-align: center;
}