/* Contenedor general de la entrada */
.entry-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: fffe;
  }
  
  /* Estilo para el título principal */
  .entry-title {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  /* Contenedor para la metadata (categorías y fecha) en disposición vertical */
  .entry-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1600px;
    margin-bottom: 35px;
    box-sizing: border-box;
    font-size: 2.4rem;
  }
  
  /* Estilo para el bloque de categorías */
  .entry-category {
    margin: 0 0 20px 0;
  }
  
  /* Estilo para la fecha */
  .entry-date {
    margin: 0;
  }
  
  /* Contenedor para la imagen */
  .entry-image {
    width: 100%;
    max-width: 1600px;
    height: 800px;
    margin-bottom: 70px;
    background-size: cover;
    background-position: center;
  }
  
  /* Estilo para el cuerpo del texto */
  .entry-body {
    width: 100%;
    max-width: 1600px;
    text-align: justify;
    margin-bottom: 70px;
  }
  
  /* Responsividad */
  @media (max-width: 768px) {
    .entry-title {
      font-size: 1.5rem;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .entry-meta {
      font-size: 1.5rem; /* Reducimos el tamaño de la fuente para la metadata */
      margin-bottom: 20px;
    }
    .entry-category {
      margin: 0 0 10px 0;
    }
    .entry-image {
      max-width: 100%;
      height: 400px; /* Altura fija para asegurar que la imagen siempre se muestre */
      margin-bottom: 20px;
    }
    .entry-body {
      font-size: 1.5rem;
      padding: 0 10px;
      margin-bottom: 20px;
    }
  }
  