
.page-newscenter .news-hero-wrap {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  padding-bottom: 72px;
}

.page-newscenter .news-hero-content {
  max-width: 820px;
  color: #fff;
}

.page-newscenter .news-hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-newscenter .news-hero-card {
  margin-top: 12px;
  max-width: 640px;
  border-radius: 12px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(8, 20, 94, 0.8), rgba(40, 32, 126, 0.56));
  box-shadow: 0 16px 38px rgba(8, 11, 48, 0.42);
  backdrop-filter: blur(7px);
}

.page-newscenter .news-hero-card-title {
  font-size: 16px;
  line-height: 2;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 12px;
}

.page-newscenter .news-hero-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  text-wrap: pretty;
}

.page-newscenter .news-hero-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 44px;
  border-radius: 9px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 800;
  color: #1f2040;
  background: linear-gradient(180deg, #f3cd67, #dba83f);
  box-shadow: 0 10px 18px rgba(249, 193, 70, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.page-newscenter .news-hero-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 13px 22px rgba(249, 193, 70, 0.42);
}

@media (max-width: 1024px) {
  .page-newscenter .news-hero-wrap {
    padding-top: 96px;
    padding-bottom: 52px;
  }
}

@media (max-width: 768px) {
  .page-newscenter .news-hero-wrap {
    padding-top: 82px;
    padding-bottom: 38px;
  }

  .page-newscenter .news-hero-card {
    max-width: 100%;
    padding: 16px 14px 18px;
  }

  .page-newscenter .news-hero-card-text {
    font-size: 13px;
    line-height: 1.64;
  }

  .page-newscenter .news-hero-btn {
    min-width: 152px;
    height: 40px;
    font-size: 16px;
  }
}

.page-newscenter .news-list-section {
  background: #f1f3f6;
  padding: 56px 0 64px;
}

.page-newscenter .news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
}

.page-newscenter .news-item-card {
  display: grid;
  justify-items: center;
  align-content: start;
}

.page-newscenter .news-item-image {
  width: 92%;
  height: 165px;
  object-fit: cover;
  background: #fff;
}

.page-newscenter .news-item-title {
  position: relative;
  margin-top: 20px;
  min-height: 44px;
  width: 92%;
  max-width: 92%;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  color: #292E33;
}

.page-newscenter .news-item-title::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: -12px;
  border-top: 1px dashed #c4c9d4;
}

.page-newscenter .news-item-card:nth-child(n + 4) .news-item-title::before {
  border-top-style: solid;
  border-top-color: #d9dee8;
}

.page-newscenter .news-item-btn {
  margin-top: 18px;
  width: 158px;
  height: 40px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #173f8b;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: filter 0.2s ease;
}

.page-newscenter .news-item-btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 1024px) {
  .page-newscenter .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-newscenter .news-list-section {
    padding: 38px 0 44px;
  }

  .page-newscenter .news-list-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-newscenter .news-item-title {
    font-size: 14px;
    min-height: auto;
  }

  .page-newscenter .news-item-btn {
    width: 148px;
    height: 38px;
    font-size: 19px;
  }
}
