.news-wrap {
  padding: 72px 20px 92px;
  box-sizing: border-box;
}

.news-tabs {
  display: flex;
  gap: 50px;
}

.news-tab {
  padding: 20px 70px;
  box-sizing: border-box;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  color: #666;
  font-size: 30px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.news-tab.active,
.news-tab:hover {
  border-color: #3e86c5;
  background: #3e86c5;
  color: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.news-item {
  min-height: 196px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding: 40px;
  box-sizing: border-box;
  color: #555;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-item-default {
  flex-direction: column;
  align-items: flex-start;
}
.news-item-default .news-desc {
  font-size: 16px;
  margin-top: 15px;
}

.news-item:hover {
  color: #3e86c5;
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.news-date {
  text-align: center;
  color: #444;
}
.news-date b {
  display: block;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
}
.news-date span {
  display: block;
  font-size: 24px;
}

.news-thumb {
  width: 260px;
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.04);
}

.news-title {
  font-size: 24px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-pagination {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 16px;
}

.page-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  color: #666;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1;
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.page-btn.active,
.page-btn:hover {
  border-color: #3e86c5;
  background: #3e86c5;
  color: #fff;
}

/*# sourceMappingURL=news.css.map */
