/* =============================================
   BLOQUE INTRODUCTORIO - ESTILOS CSS SIN TAILWIND
   ============================================= */

/* Contenedor del texto introductorio */
.intro-block {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Línea decorativa superior */
.intro-divider {
  width: 2.5rem;
  height: 1px;
  background-color: #0044a5;
  margin-bottom: 1.5rem;
  border: none;
}

/* Texto descriptivo */
.intro-text {
  color: #4b5563;
  font-weight: 300;
  line-height: 1.625;
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .intro-text {
    font-size: 1rem;
  }
}