.news-section {
  padding: 72px 20px;
  background: #fcfcfc;
}

.news-section .news {
  max-width: 900px;
  margin: 0 auto;
}

.news-title {
  margin: 0;
  color: #222;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.news-desc {
  max-width: 760px;
  margin: 12px auto 38px;
  color: #777;
  text-align: center;
}

.news-section .news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e8e8e8;
  list-style: none;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid #e8e8e8;
}

.news-link {
  min-width: 0;
  overflow: hidden;
  color: #222;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-link:hover,
.news-link:focus-visible {
  color: #4ea1fc;
}

.news-time {
  flex: 0 0 auto;
  color: #999;
  font-size: 14px;
}

.news-more {
  margin-top: 30px;
  text-align: center;
}

.news-more a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 5px;
  background: #4ea1fc;
  color: #fff;
}

@media (max-width: 750px) {
  .news-section {
    padding: 42px 20px;
  }

  .news-title {
    font-size: 24px;
  }

  .news-desc {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .news-item {
    gap: 12px;
    padding: 14px 0;
  }

  .news-link {
    font-size: 15px;
  }

  .news-time {
    font-size: 12px;
  }
}
