.otherMentorsSection {
  max-width: 100vw;
  overflow: hidden;
  padding: 24px;
  background: #f6efdf;
  box-sizing: border-box;
}

.otherMentorsSection__container {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background: #17407d;
  box-sizing: border-box;
}

.otherMentorsSection__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 32px 0;
}

.otherMentorsSection__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.otherMentorsSection__title {
  margin: 0;
  max-width: 891px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.45vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.otherMentorsSection__description {
  margin: 0;
  max-width: 584px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.otherMentorsSection__description p {
  margin: 0;
}

.otherMentorsSection__loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.otherMentorsSection__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.otherMentorsSection__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 15px 30px;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 15.6px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.188px;
  text-transform: uppercase;
  box-sizing: border-box;
}

.otherMentorsSection__buttonPrimary {
  width: 216px;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.otherMentorsSection__buttonSecondary {
  border: 0;
  color: #17407d;
  background: #ffffff;
}

.otherMentorsSection__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.otherMentorsSection__carouselRow {
  display: flex;
  align-items: center;
  width: 100%;
}

.otherMentorsSection__desktopArrowWrap {
  width: 72px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.otherMentorsSection__desktopArrowWrapLeft {
  padding-right: 16px;
  justify-content: flex-start;
}

.otherMentorsSection__desktopArrowWrapRight {
  padding-left: 16px;
  justify-content: flex-end;
}

.otherMentorsSection__arrowButton {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #377ee4;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.otherMentorsSection__arrowButton:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.otherMentorsSection__arrowButton:disabled {
  cursor: default;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.otherMentorsSection__arrowButton:disabled svg path {
  fill: rgba(255, 255, 255, 0.6);
}

.otherMentorsSection__carousel {
  flex: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 288px;
  column-gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.otherMentorsSection__carousel::-webkit-scrollbar {
  display: none;
}

.otherMentorsSection__mentorCard {
  width: 288px;
  min-width: 288px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.otherMentorsSection__mentorImage {
  width: 240px;
  height: 220.34px;
  object-fit: cover;
  display: block;
}

.otherMentorsSection__mentorText {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.otherMentorsSection__mentorCategory {
  margin: 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 24.94px;
}

.otherMentorsSection__mentorName {
  margin: 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 19.8px;
}

.otherMentorsSection__mobileNavigation {
  display: none;
}

@media (max-width: 768px) {
  .otherMentorsSection {
    padding: 24px 12px;
  }

  .otherMentorsSection__container {
    padding: 48px 24px;
    gap: 24px;
  }

  .otherMentorsSection__header {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .otherMentorsSection__intro {
    gap: 24px;
  }

  .otherMentorsSection__title {
    max-width: none;
    font-size: 32px;
    line-height: 35.2px;
  }

  .otherMentorsSection__description {
    max-width: none;
    font-size: 16px;
    line-height: 21.6px;
  }

  .otherMentorsSection__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .otherMentorsSection__carouselRow {
    align-items: stretch;
  }

  .otherMentorsSection__desktopArrowWrap {
    display: none;
  }

  .otherMentorsSection__carousel {
    grid-auto-columns: 153px;
    column-gap: 16px;
  }

  .otherMentorsSection__mentorCard {
    width: 153px;
    min-width: 153px;
    padding: 0;
  }

  .otherMentorsSection__mentorImage {
    width: 153px;
    height: 220.34px;
  }

  .otherMentorsSection__mobileNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
