.news-section {
  width: 100%;
  padding: 40px 0;
}
.news-section .swiper {
  overflow: hidden;
}
.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.news-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 13px;
  opacity: .6;
  margin-bottom: 10px;
}
.news-title {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 700;
}
.news-excerpt {
  font-size: 15px;
  line-height: 1.5;
  opacity: .8;
}
.news-section .swiper-button-next,
.news-section .swiper-button-prev {
  color: #000;
}
.news-section .swiper-pagination-bullet-active {
  background: #000;
}