:root {
  --news-ink: #07111f;
  --news-muted: #637185;
  --news-blue: #176dff;
  --news-violet: #7b3ff2;
  --news-line: #e5ecf5;
  --news-soft: #f5f8fc;
}

body {
  color: var(--news-ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

.news-page {
  background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
  overflow: hidden;
}

.news-page .container {
  max-width: 1180px;
}

.news-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(23, 109, 255, .14), transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(123, 63, 242, .17), transparent 26%),
    linear-gradient(112deg, #f8fbff 0%, #edf5ff 58%, #f1eaff 100%);
  overflow: hidden;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(23,109,255,.08) 58.2% 58.45%, transparent 58.7%),
    repeating-linear-gradient(115deg, transparent 0 54px, rgba(23,109,255,.07) 55px, transparent 56px);
  pointer-events: none;
}

.news-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.news-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--news-blue);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0;
  color: #061426;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
}

.news-hero p {
  margin: 22px 0 0;
  color: #52657a;
  font-size: 18px;
  line-height: 1.9;
}

.news-search {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 34px auto 0;
}

.news-search input {
  width: 100%;
  height: 56px;
  padding: 0 132px 0 52px;
  border: 1px solid rgba(111, 127, 150, .18);
  border-radius: 28px;
  color: var(--news-ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 54px rgba(21, 50, 90, .13);
  outline: none;
}

.news-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #8a96a8;
  border-radius: 50%;
  transform: translateY(-50%);
}

.news-search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #8a96a8;
  transform: rotate(45deg);
}

.news-search button {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 44px;
  min-width: 104px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--news-blue), var(--news-violet));
  font-weight: 800;
  cursor: pointer;
}

.news-tabs {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--news-line);
  box-shadow: 0 16px 36px rgba(21, 50, 90, .05);
}

.news-tabs-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
}

.news-tab {
  flex: 0 0 auto;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #1f2937;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.news-tab:hover,
.news-tab.is-active {
  color: var(--news-blue);
}

.news-tab.is-active {
  background: rgba(23, 109, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(23, 109, 255, .10);
}

.news-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  background: var(--news-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.news-tab:hover::after,
.news-tab.is-active::after {
  transform: scaleX(1);
}

.news-list-section {
  padding: 88px 0 100px;
}

.news-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.news-section-head h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 900;
}

.news-section-head p {
  max-width: 500px;
  margin: 0;
  color: var(--news-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: right;
}

.news-count {
  margin-bottom: 26px;
  color: var(--news-muted);
  font-size: 14px;
}

.news-count strong {
  color: var(--news-blue);
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--news-line);
  box-shadow: 0 14px 30px rgba(21, 50, 90, .05);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  border-color: rgba(23,109,255,.25);
  box-shadow: 0 22px 44px rgba(21, 50, 90, .11);
}

.news-thumb {
  height: 136px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(94, 220, 255, .32), transparent 24%),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(145deg, #07111f, #10365f);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8a96a8;
  font-size: 13px;
  font-weight: 700;
}

.news-category {
  color: var(--news-blue);
}

.news-card h3 {
  margin: 10px 0 10px;
  color: var(--news-ink);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.news-card p {
  margin: 0;
  color: var(--news-muted);
  font-size: 14px;
  line-height: 1.8;
}

.news-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--news-blue);
  background: #f1f6ff;
  font-weight: 900;
}

.news-empty {
  padding: 70px 24px;
  color: var(--news-muted);
  text-align: center;
  background: #fff;
  border: 1px solid var(--news-line);
}

.news-page .pagination {
  margin-top: 42px;
  justify-content: center;
}

.news-page .pagination .page-link {
  font: inherit;
  cursor: pointer;
}

.news-page .pagination .page-item.disabled .page-link {
  cursor: default;
}

@media (max-width: 991.98px) {
  .news-hero { padding: 72px 0; min-height: auto; }
  .news-hero h1 { font-size: 42px; }
  .news-card { grid-template-columns: 170px minmax(0, 1fr); }
  .news-arrow { display: none; }
}

@media (max-width: 767.98px) {
  .news-hero { padding: 54px 0 62px; }
  .news-hero h1 { font-size: 34px; }
  .news-hero p { font-size: 15px; }
  .news-search input { height: 52px; padding-right: 92px; }
  .news-search button { min-width: 78px; }
  .news-tabs-inner { min-height: 62px; }
  .news-tab { min-height: 52px; padding: 0 12px; font-size: 13px; }
  .news-tab::after { left: 12px; right: 12px; }
  .news-list-section { padding: 62px 0 72px; }
  .news-section-head { display: block; margin-bottom: 28px; }
  .news-section-head h2 { font-size: 30px; }
  .news-section-head p { margin-top: 12px; text-align: left; }
  .news-card { grid-template-columns: 1fr; padding: 22px; gap: 18px; }
  .news-thumb { height: 180px; }
  .news-card h3 { font-size: 20px; }
}
