/* Other Programs Section */
.other-programs-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.other-programs-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.other-programs-section .other-programs-panel {
  display: flex;
  align-items: center;
  gap: var(--inner-gap);
  overflow-y: hidden;
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.other-programs-section .other-programs-panel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.other-programs-section .cta {
  display: flex;
  flex-direction: column;
  border-radius: 41px;
}

.other-programs-section .card-green {
  background-color: #e7ebe4;
}

.other-programs-section .card-cream {
  background-color: #f9f7f7;
}

.other-programs-section .card-gray {
  background-color: #e5e9ec;
}

.other-programs-section .card-blue {
  background-color: #E6EAED;
}

.other-programs-section .cta button {
  width: 260px;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 41px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.other-programs-section .cta button span {
  max-width: 131px;
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.other-programs-section .cta .cta-link {
  width: 260px;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 41px;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.other-programs-section .cta .cta-link span {
  max-width: 131px;
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.other-programs-section .cta .cta-link:hover {
  opacity: 0.9;
}

@media (min-width: 1280px) {
  .other-programs-section .container {
    gap: 60px;
  }

  .other-programs-section .cta button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
    color: #353535;
  }

  .other-programs-section .cta .cta-link span {
    font-size: 16px;
    line-height: 20.8px;
  }

  .other-programs-section .other-programs-panel {
    overflow-y: hidden;
    overflow-x: auto;

    -webkit-overflow-scrolling: auto;
    scroll-behavior: auto;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .other-programs-section .other-programs-panel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
}

@media (pointer: coarse) {
  .other-programs-section .other-programs-panel {
    -webkit-overflow-scrolling: touch;
  }
}
