.section-date {
  text-align: center;
  margin-top: 40px;
  color: #1a3f7a;
  font-size: 18px;
  font-weight: bold;
}

.blog-article h1 {
  text-align: center;
  margin: 10px 0;
  font-size: 3.4em;
  background-image: linear-gradient(90deg, #c43c75 47%, #1a3f7a 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  text-align: center;
  color: #1a3f7a;
  font-size: 20px;
  margin: 10px;
}

.description {
  margin: 10px;
  text-align: center;
  font-size: 14px;
  color: #1a3f7a;
}

.divider {
  height: 3px;
  width: 60%;
  margin: 30px auto;
  background: linear-gradient(90deg, #c43c75 47%, #1a3f7a 78%);
  border-radius: 2px;
}

/* Contenedor de columna responsivo */
.column {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: black;
  column-gap: 40px;
  column-count: 1;
  /* Por defecto: 1 columna en móviles */
}

.column * {
  line-height: 1.5;
}

@media (min-width: 768px) {
  .column {
    column-count: 2;
    /* 2 columnas en tablet y PC */
  }

  .blog-article h1 {
    font-size: 3em;

  }
}

@media (max-width: 768px) {
  .divider {
    width: 80%;
  }


  .blog-article h1 {
    font-size: 2.7em;

  }

  .subtitle {
    font-size: 1.7em;
  }

  .description {
    font-size: 1.3em;
  }
}

.column h3 {
  margin-bottom: 10px;
  break-inside: avoid;
  margin-block-start: 0;
}

.column p {
  margin-bottom: 15px;
}

.return-btn {
  display: block;
  margin: 40px auto;
  padding: 15px 30px;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(90deg,
      rgba(196, 60, 117, 1) 0%,
      rgba(26, 63, 122, 1) 78%);
}

.return-btn:hover {
  background: linear-gradient(90deg,
      rgba(26, 63, 122, 1) 0%,
      rgba(196, 60, 117, 1) 78%);
}