/* Shared blog-only utilities; global reset, layout, navigation, buttons, social links and footer live in assets/css/. */

.filter-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tag-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animations-ready .fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

.animations-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
}
