section#title {
  padding: 110px 0 80px;
}

.title-wrap {
  border-radius: 48px;
  padding: 80px;
  background-image: url("../img/services_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title-wrap h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: 0.8px;
}

.title-wrap p {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.news-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 500px;
}

.news-item {
  width: 100%;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0px 4px 40px 0px rgba(0, 31, 35, 0.15);
  color: #000;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.news-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.news-item .img-wrap {
  width: 30%;
  aspect-ratio: 16/9;
  background-color: #f6f6f6;
  border-radius: 12px;
}

.news-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.news-item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item h3 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding-left: 5px;
  margin: 0;
}

.news-item p {
  line-height: 2rem;
  margin-top: 25px;
  padding-left: 5px;
}

@media (max-width: 990.9px) {
  section#title {
    padding: 110px 0 50px;
  }
  .title-wrap h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767.9px) {
  .news-item {
    flex-direction: column;
  }
  .news-item .img-wrap {
    width: 100%;
  }
}

@media (max-width: 575.9px) {
  .title-wrap {
    padding: 60px 30px;
  }
  .title-wrap h1 {
    font-size: 2.5rem;
  }
}
