/* =============================================
   BUTTON — wariant "circle right" (About Us / Poznaj nas)
   Klasa w Elementorze: auf-btn-circle
   ============================================= */

.auf-btn-circle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  height: 32px !important;
  padding: 0 !important;
  background: transparent !important;

  border: 0 !important;
  border-radius: 0 !important;
  font-weight: 300 !important;
  text-decoration: none !important;
}

.auf-btn-circle::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('https://auf.studiodi4.pl/wp-content/uploads/2026/06/arrow-down-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}

/* Hover: strzałka "drga" w dół */
.auf-btn-circle:hover::after {
  transform: translateY(3px);
}