.other-courses {
  padding: 80px 24px;
  background: #f7f7f7;
}

.other-courses__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.other-courses__title {
  margin: 0 0 40px;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.other-courses__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.other-courses__item {
  display: flex;
  min-height: 190px;
  padding: 32px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.other-courses__name {
  display: flex;
  min-height: 58px;
  margin: 0 0 24px;
  align-items: center;
  color: #333;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.other-courses__button {
  display: flex;
  width: 100%;
  max-width: 280px;
  min-height: 52px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: #f3920b;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.other-courses__button:hover {
  color: #fff;
  opacity: 0.8;
}

.other-courses__button--basic {
  background: #dd4a46;
}

.other-courses__button--develop {
  background: #7300ff;
}

.other-courses__button--intern {
  background: #aeba00;
}

.other-courses__button--ai {
  background: #3172ff;
}

.other-courses__arrow {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .other-courses {
    padding: 56px 20px;
  }

  .other-courses__title {
    margin-bottom: 28px;
    font-size: 26px;
  }

  .other-courses__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .other-courses__item {
    min-height: auto;
    padding: 24px 20px;
  }

  .other-courses__name {
    min-height: auto;
    margin-bottom: 20px;
    font-size: 19px;
  }
}
