/* Wrapper pro SEO tlačítka pod textem */
.seo-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
}

/* SEO tlačítko */
.SEO-category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  /* šedý "glass" vzhled */
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(140, 140, 140, 0.35);
  color: #8c8c8c;

  /* blur pozadí (glass efekt) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.SEO-category-button:hover {
  background-color: rgba(255, 255, 255, 0.55);
  color: #3f3f3f;
  transform: translateY(-1px);
}

/* Ať to nevypadá jako velké CTA ani po kliku */
.SEO-category-button:active {
  transform: translateY(0);
}

/* Zvýrazněné SEO tlačítko */
.seo-category-button--primary {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(20, 122, 153, 0.45);
  color: #147a99;
}

.seo-category-button--primary:hover {
  background-color: rgba(20, 122, 153, 0.95);
  color: #ffffff;
}

/* SEO tlačítka – jen desktop */
@media (max-width: 768px) {
  .seo-category-buttons {
    display: none !important;
  }
}