.wp-block-buttons .wp-block-button__link {
    padding: calc(0.5em + 2px) calc(2em + 2px);
}

.atomi-slider {
	position: relative;
	transition: all 0.3s ease;
}

.atomi-slider-nav {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

/* hide native radio */
.atomi-slider-nav input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  opacity: 0.5;
}

/* checked state */
.atomi-slider-nav input[type="radio"]:checked {
  opacity: 1;
}

/* hover effect */
.atomi-slider-nav input[type="radio"]:hover {
  opacity: 0.8;
}

.atomi-slider-track {
	position: relative;	
	width: 100%;
	height: calc(100vh - 200px);
	overflow: hidden;
}

.atomi-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease; /* smooth transition */
}

.atomi-slide.active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 1;
}

.atomi-slide-image {
}

.atomi-slider-caption {
}