/* ************************************************************** */
/* # archive.css                                                  */
/* Hoja de estilos dedicada para el archivo de entradas           */
/* ************************************************************** */

/* reset básico y configuración general */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* Contenedor principal de entradas (ejemplo) */
#contenido-entradas {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}

/* ----- LISTA DE ENTRADAS DEL ARCHIVO ----- */
.entrada-archivo {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  align-items: flex-start;
}

.entrada-imagen {
  width: 150px;  /* tamaño fijo para todas las imágenes */
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.entrada-detalles h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
}

.entrada-detalles p {
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.entrada-detalles span {
  font-size: 0.85rem;
  color: #666;
}

/* Snippet original proporcionado */
.two-col-section { display: flex; gap: 2rem; margin: 3rem 0; }
.two-col-section .col { flex: 1 1 0; }
.two-col-section h4 { margin-top: 0; }
.image.left { float: left; margin: 0 1rem 1rem 0; }
.image.right { float: right; margin: 0 0 1rem 1rem; }
/* Clear floats con ::after (mejor que div inline) */
.col::after { content: ""; display: table; clear: both; }
@media (max-width: 600px) { .two-col-section { flex-direction: column; } }

/* Manejamos responsive para móviles */
@media (max-width: 600px) {
  .entrada-archivo {
    flex-direction: column;
    align-items: flex-start;
  }
}
