/* header*/


/* 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;
}
