:root {
  --text: #12161b;
  --muted: #68717a;
  --line: rgba(18, 22, 27, 0.12);
  --surface: #f4f7f8;
  --white: #ffffff;
  --green: #0f7b54;
  --gold: #c69a4a;
  --ink: #080d11;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.news-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 40px;
  color: var(--white);
  background: rgba(8, 13, 17, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.news-header.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
}

.news-brand {
  display: inline-flex;
  align-items: center;
  min-width: 166px;
  height: 40px;
}

.news-logo {
  display: block;
  width: 146px;
  height: auto;
}

.news-logo-dark {
  display: none;
}

.news-header.is-scrolled .news-logo-dark {
  display: block;
}

.news-header.is-scrolled .news-logo-light {
  display: none;
}

.news-nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
}

.news-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: end;
  padding: 120px 8vw 86px;
  color: var(--white);
  overflow: hidden;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 9, 12, 0.1), rgba(4, 9, 12, 0.82)),
    linear-gradient(90deg, rgba(4, 9, 12, 0.78), rgba(4, 9, 12, 0.1));
}

.news-hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/brochure/page-50-image-0.jpg") center/cover;
  transform: scale(1.03);
}

.news-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
}

.news-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.8;
}

.news-section {
  padding: 96px 8vw;
  background: var(--surface);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-item,
.news-empty {
  display: block;
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-item span,
.news-empty span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.news-item strong,
.news-empty strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.news-item p,
.news-empty p {
  color: var(--muted);
  line-height: 1.8;
}

.news-item small {
  display: block;
  margin-top: 28px;
  color: rgba(18, 22, 27, 0.46);
}

@media (max-width: 980px) {
  .news-header {
    padding: 0 22px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .news-logo {
    width: 122px;
  }

  .news-brand {
    min-width: 138px;
  }

  .news-nav {
    gap: 14px;
    font-size: 13px;
  }

  .news-nav a:nth-child(2) {
    display: none;
  }

  .news-hero,
  .news-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}
