/* Menu + Slider */

.dsa-menu-slider {
  display: flex;
  width: 100%;
  min-height: 600px;
  align-items: stretch;
}

.dsa-menu-slider__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 14px;
}

.dsa-menu-slider__right {
  width: 50%;
  position: relative;
}

/* -----------------------------------
   Menu list
----------------------------------- */

.dsa-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dsa-menu-item {
  font-size: clamp(42px, calc(24px + 2.71vw), 68px);
  font-family: "ABCDiatype", sans-serif;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
  user-select: none;
  transition: color 0.2s ease;

}

.dsa-menu-item:hover,
.dsa-menu-item.is-active {
  color: #e54b48;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* -----------------------------------
   Bottom link
----------------------------------- */

.dsa-menu-link {
  display: inline-block;
  color: #e54b48;
  font-size: 24px;
  font-family: "ABCDiatype", sans-serif;
  font-weight: 500;
  text-decoration: underline!important;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;

}

.dsa-menu-link:hover {
  color: #e54b48;
  opacity: 0.7;
}

/* -----------------------------------
   Slider groups
----------------------------------- */

.dsa-slider-group {
  position: absolute;
  inset: 0;
  display: none;
}

.dsa-slider-group.is-active {
  display: block;
}

/* -----------------------------------
   Slider track
----------------------------------- */

.dsa-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dsa-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.dsa-slide {
  min-width: 100%;
  height: 100%;
}

.dsa-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dsa-slide--empty {
  background: #e8e8e8;
}

/* -----------------------------------
   Arrows
----------------------------------- */

.dsa-slider-arrows {
  position: absolute;
  bottom: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.dsa-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  pointer-events: all;
  transition: opacity 0.2s ease;
}

.dsa-arrow:hover {
  opacity: 0.5;
}

.dsa-arrow__icon {
  width: 28px;
  height: auto;
  display: block;
}

.dsa-arrow__icon--prev {
  transform: rotate(180deg);
}

/* -----------------------------------
   Mobile
----------------------------------- */

@media (max-width: 768px) {
  .dsa-menu-slider {
    flex-direction: column;
  }

  .dsa-menu-slider__left,
  .dsa-menu-slider__right {
    width: 100%;
  }

  .dsa-menu-slider__right {
    min-height: 320px;
    position: relative;
  }

  .dsa-menu-slider__left {
    padding: 10px 14px;
  }
}
