  /* Slider control styles */
  .glide__bullets {
    display: flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border-radius: var(--block-radius);
  }

  .glide__bullet--active {
    width: 24px;
  }

  .glide__bullet {
    height: 12px;
    max-width: 24px;
    border-radius: var(--block-radius);
    background: var(--color-white-200);
    border: none;
    cursor: pointer;
  }

  .glide__bullet--active,
  .glide__bullet[aria-current="true"] {
    background: var(--btn-default-color)
  }