/* header*/
/* Cabecera completa solo > 992 px */
@media (min-width: 992px) {
  .pkp_structure_head {
    background-color: rgba(37, 105, 108, 0.7); /* 💧 más claro */
    background-image: url("/public/images/imagen_portada-min.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 120%;
    background-blend-mode: multiply;
  }

  .pkp_site_nav_menu {
    background: linear-gradient(
      to right,
      rgba(37, 105, 108, 0.0) 50%,
      rgba(37, 105, 108, 0.0) 100%
    ) !important;
  }
}

/* Links */
a {
    text-decoration: none;
    color: #25696c;
}
a:hover {
    color: #72b8ab;
}
/* pagina numero*/

.obj_article_summary>.title a {
    text-decoration: none;
    color: #25696c;
}
.obj_article_summary>.title a:hover {
    color: #72b8ab;
}

/* buttons*/
.cmp_button_wire:hover, .cmp_button_wire:focus, .obj_galley_link:hover, .obj_galley_link:focus {
    background: #25696c;
    color: #fff;
}

/* article page*/
.item.cover_image img {
    padding: 20px;
    margin: -20px 0;
}

/* Estilos locales y simples */
.ojs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* centra verticalmente portada y texto */
  gap: 0;
  margin: 1rem 0;
}

.ojs-col-left,
.ojs-col-right {
  box-sizing: border-box;
}

.ojs-col-left {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.ojs-col-right {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;              /* usamos flex también aquí */
  flex-direction: column;     /* apilamos título y párrafo */
  justify-content: center;    /* los centramos verticalmente */
}

@media (min-width:768px) {
  .ojs-col-left {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 1rem;
    margin-bottom: 0;
  }
  .ojs-col-right {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.ojs-cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.ojs-title {
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  line-height: 1.3;
}

.ojs-text {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.ojs-meta {
  margin: 0;
  padding-left: 1rem;
}
