.news-section {
  clear: both;
  padding: 68px 20px 72px;
  background: #f4fbfb;
}

.news-section .news {
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 42px 54px 38px;
  border: 1px solid rgba(21, 198, 183, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(26, 94, 89, 0.08);
}

.news-section .news-title {
  position: relative;
  margin: 0;
  padding: 0 0 16px;
  color: #333;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.04em;
}

.news-section .news-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: #15c6b7;
  content: "";
  transform: translateX(-50%);
}

.news-section .news-desc {
  max-width: 790px;
  margin: 20px auto 27px;
  color: #666;
  font-size: 15px;
  line-height: 1.85;
  text-align: center;
}

.news-section .news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-section .news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 6px;
  border-bottom: 1px solid #e8eeee;
}

.news-section .news-item:first-child {
  border-top: 1px solid #e8eeee;
}

.news-section .news-link {
  min-width: 0;
  overflow: hidden;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.news-section .news-link:hover,
.news-section .news-link:focus-visible {
  color: #15a99d;
}

.news-section .news-time {
  flex: 0 0 auto;
  color: #8a9998;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

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

.news-section .news-more a {
  display: inline-block;
  min-width: 156px;
  padding: 11px 24px;
  border: 1px solid #15c6b7;
  border-radius: 24px;
  background: #15c6b7;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.news-section .news-more a:hover,
.news-section .news-more a:focus-visible {
  border-color: #18bdaf;
  background: #18bdaf;
  color: #fff;
}

@media (max-width: 767px) {
  .news-section {
    padding: 44px 15px 48px;
  }

  .news-section .news {
    padding: 31px 20px 30px;
    border-radius: 10px;
  }

  .news-section .news-title {
    font-size: 25px;
  }

  .news-section .news-desc {
    margin: 18px auto 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .news-section .news-item {
    display: block;
    min-height: 0;
    padding: 14px 2px 13px;
  }

  .news-section .news-link {
    display: block;
    overflow: visible;
    font-size: 15px;
    white-space: normal;
  }

  .news-section .news-time {
    display: block;
    margin-top: 5px;
    font-size: 13px;
  }

  .news-section .news-more {
    margin-top: 25px;
  }
}
