.explore-other-content {
  position: relative;
}

.explore-other-content__wrapper {
  display: flex;
  position: relative;
}

.explore-other-content__cards {
  display: flex;
}

.explore-other-content__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
  background: #fff;
  flex: 1 1 calc((100% / 3) - 32px);
}

.explore-other-content__card-img {
  max-width: 58px;
  display: flex;
}

.explore-other-content__card-title {
  display: flex;
  font-weight: 700;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #222;
  transition: all 0.3s;
  text-align: center;
}

.explore-other-content__body {
  width: 100%;
}

@media screen and (min-width: 1401px) {
  .explore-other-content__cards {
    margin: 0 100px;
  }
}

@media screen and (min-width: 1201px) {
  .explore-other-content {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .explore-other-content__cards {
    gap: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .explore-other-content__cards {
    gap: 25px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .explore-other-content {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 800px) {
  .explore-other-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore-other-content__cards {
    flex-direction: column;
  }

  .explore-other-content__card {
    flex: 1;
  }
}
