.msb-landing-guide {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1318px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.msb-landing-guide__track {
  position: relative;
  margin-top: 32px;
}

.msb-landing-guide__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 32px 24px 24px 0px;
  align-items: flex-start;
}

.msb-landing-guide__scroll::-webkit-scrollbar {
  display: none;
}

.msb-landing-guide__btn_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.msb-landing-guide__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0px;
  background: #dee5ef66;
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition:
    opacity 0.2s,
    box-shadow 0.2s;
  padding: 0;
  margin: 0 !important;
}

.msb-landing-guide__btn_wrap .msb-landing-guide__btn {
  pointer-events: auto;
}

.msb-landing-guide__btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.msb-landing-guide__btn:hover svg {
  stroke: #f4600c;
}

.msb-landing-guide__btn:hover {
  background-color: #fff;
}

.msb-landing-guide__btn svg {
  width: 32px;
  height: 32px;
  color: #091e42;
}

.msb-landing-guide__btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Children overrides when inside guide ── */
.msb-landing-guide .msb-guide-item {
  scroll-snap-align: start;
  min-width: 240px;
  transition: transform 0.4s ease;
}

.msb-landing-guide .msb-guide-item:hover {
  transform: translateY(-16px);
}

@media (max-width: 1024px) {
  .msb-landing-guide {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .msb-landing-guide {
    padding: 0 16px;
  }

  .msb-landing-guide .msb-guide-item {
    flex: 0 0 78% !important;
  }

  .msb-landing-guide__btn--prev {
    width: 32px;
    height: 32px;
    min-height: auto !important;
  }

  .msb-landing-guide__btn--next {
    width: 32px;
    height: 32px;
    min-height: auto !important;
  }

  .msb-landing-guide__btn svg {
    width: 24px;
    height: 24px;
  }

  .msb-landing-guide .msb-guide-item:hover {
    transform: translateY(0px);
  }
}
