/* Homepage news: retain the dark surface, centered composition and logo palette. */
.news-section {
  box-sizing: border-box;
  width: 100%;
  padding: 72px 24px 64px;
  background: #010204;
  color: #fff;
}
.news-section *, .news-section *::before, .news-section *::after { box-sizing: border-box; }
.news-section .news { width: min(982px, 100%); margin-inline: auto; }
.news-section .news-title {
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.news-section .news-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: var(--download-brand-gradient, linear-gradient(135deg, #ae87fe, #5396ed, #133ee2));
}
.news-section .news-desc {
  max-width: 680px;
  margin: 22px auto 34px;
  color: #babec8;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
.news-section .news-list { margin: 0; padding: 0; border-top: 1px solid #252934; list-style: none; }
.news-section .news-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #252934;
}
/* Uncompiled placeholders must not appear during static HTML preview. */
.news-section .news-item[data-news-id^="{$"] { display: none; }
.news-section .news-link { min-width: 0; color: #f3f4f7; font-size: 17px; line-height: 1.7; overflow-wrap: anywhere; }
.news-section .news-link:hover { color: #a5b7ff; text-decoration: underline; text-underline-offset: 5px; }
.news-section .news-time { flex: none; color: #a1a6b4; font: 14px/1.7 Arial, sans-serif; white-space: nowrap; }
.news-section .news-empty { padding: 28px 0; color: #a1a6b4; font-size: 15px; line-height: 1.8; text-align: center; border-bottom: 1px solid #252934; }
.news-section .news-more { margin-top: 32px; text-align: center; }
.news-section .news-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 28px;
  border: 1px solid #59699b;
  border-radius: 24px;
  color: #dce3ff;
  background: #111726;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}
.news-section .news-more a:hover { border-color: #a5b7ff; color: #fff; background: #1a2340; }
.news-section a:focus-visible { outline: 3px solid #a5b7ff; outline-offset: 5px; }
.news-section .news-noscript { margin-top: 18px; color: #a1a6b4; font-size: 14px; text-align: center; }
.news-section .news-noscript a { color: #a5b7ff; }
@media (max-width: 768px) {
  .news-section { padding: 44px 20px 42px; }
  .news-section .news-title { font-size: 28px; }
  .news-section .news-desc { margin-block: 18px 28px; font-size: 14px; }
  .news-section .news-link { font-size: 16px; }
  .news-section .news-item { gap: 16px; padding-block: 18px; }
  .news-section .news-time { font-size: 12px; }
}
@media (max-width: 520px) {
  .news-section .news-item { flex-direction: column; align-items: flex-start; gap: 7px; }
}
