/* Sección general */
.editorial-section {
  margin-bottom: 40px;
}

/* Títulos */
.editorial-section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Contenedor en dos columnas */
.associate-editors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* espacio entre cards */
}

/* Cada card ocupa 50% */
.editorial-card {
  flex: 0 0 48%; /* 48% + gap para dos columnas */
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  max-width: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover */
.editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Imagen circular */
.editorial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Contenedor de texto */
.editorial-card div {
  display: flex;
  flex-direction: column;
}

/* Nombre */
.editorial-card strong {
  font-size: 1.1em;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

/* Universidad */
.editorial-card span {
  font-size: 0.95em;
  color: #555;
}

/* Responsivo: una columna en móvil */
@media (max-width: 768px) {
  .editorial-card {
    flex: 0 0 100%;
  }
}
