.disciplines {
  position: relative;
  font-family: "Fira Sans", sans-serif;
  color: white;
  line-height: 1.2;
  width: 100%;
  max-width: 962px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.disciplines *,
.disciplines *::before,
.disciplines *::after {
  box-sizing: inherit;
}

.disciplines::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 10%;
}

.disciplines__title {
  text-align: center;
  font-size: clamp(30px, 5.5vw, 40px);
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
}

.disciplines-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.disciplines-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 32px;
}

.disciplines-item__image {
  display: block;
  width: 87px;
  height: 87px;
  margin-bottom: 16px;
}

.disciplines-item__title {
  margin: 0;
  margin-bottom: 8px;
  font-size: clamp(20px, 4vw, 25px);
}

.disciplines-item__desc {
  margin: 0;
  font-size: clamp(16px, 3vw, 21px);
}

@media (min-width: 768px) {
  .disciplines-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .disciplines::after {
    width: 90%;
    left: 5%;
  }
}

@media (min-width: 992px) {
  .disciplines-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
