/* ========================================
   HASHTAGS NOS ARTIGOS (PADRÃO DO SITE)
   ======================================== */

.article-hashtags {
  margin: 40px 0;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.article-hashtags h3 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hashtag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none; /* caso seja <a> */
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  word-break: break-word;
}

/* Se for <a>, mantém hover bonitinho */
.hashtag:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Acessibilidade: foco visível no teclado */
.hashtag:focus-visible {
  outline: 3px solid rgba(21, 159, 95, 0.35);
  outline-offset: 2px;
  transform: translateY(-1px);
}

/* Se você estiver usando <span class="hashtag">, remova o cursor pointer
   OU troque o HTML para <a class="hashtag" href="...">#tag</a> */
.hashtag {
  cursor: default; /* troque para pointer só se clicar fizer algo */
}

@media (max-width: 768px) {
  .article-hashtags {
    padding: 18px;
  }

  .article-hashtags h3 {
    font-size: 1.1rem;
  }

  .hashtag {
    font-size: 0.82rem;
    padding: 6px 12px;
  }
}
