/* --- Десктоп (ширина больше 980px) --- */
@media screen and (min-width: 981px) {
  .t-slds__bullet_wrapper {
    bottom: 40px !important; /* расстояние от низа на десктопе */
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* --- Планшеты (640px - 980px) --- */
@media screen and (min-width: 641px) and (max-width: 980px) {
  .t-slds__bullet_wrapper {
    bottom: 15px !important; /* чуть выше для планшета */
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

