.projects__title {
  margin-bottom: 30px;
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
  margin-bottom: 90px;
}

.projects__image {
  margin-bottom: 15px;

  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.projects__name {
  margin-bottom: 15px;
  color: #121212;
}

.projects__read-more {
  margin-left: 2px;

  font-size: 20px;
  font-style: normal;
  line-height: normal;
  color: #ad1818;
  text-decoration: none;
  font-family: "Manrope";
  display: block;
}

.projects__link {
  width: 100%;
  height: 153px;
  display: block;
  background-color: white;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--Accent, #ad1818);
  color: #ad1818;
  line-height: 152px;
  text-decoration: none;
  cursor: pointer;
  font-size: 30px;
}

.projects__link:hover {
  background-color: #ad1818;
  color: white;
}

@media (max-width: 1199px) {
  .projects__list {
    gap: 80px;
    margin-bottom: 104px;
  }

  .projects__name {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .projects__title {
    margin-bottom: 20px;
  }

  .projects__list {
    gap: 49px;
    margin-bottom: 60px;
  }

  .projects__image {
    margin-bottom: 20px;
    height: 250px;
  }

  .projects__name {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 25px;
  }

  .projects__read-more {
    margin-left: -1px;
    font-size: 16px;
    line-height: 22px;
  }

  .projects__link {
    height: 100px;
    font-size: 22px;
    line-height: 100px;
  }
}
