.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.article-title {
  margin-bottom: 1rem;
}

.article-date {
  font-size: 0.9rem;
  color: #718096;
}

.article-content {
  line-height: 1.7;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.article-content a {
}

/* Tags */
.tags-section {
  margin-top: 3rem;
}

.tags-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tags-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
}

.tag-item a {
  background-color: #bfdbfe;  /* azul claro */
  color: #1e40af;             /* azul oscuro */
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 9999px; /* pill */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tag-item a:hover {
  background-color: #93c5fd; /* azul un poco más fuerte */
  color: #1e3a8a;
}
