.page-news {
  --timeline-gutter: 28px;
  --timeline-dot: 14px;
  background: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
  padding-top: calc(var(--header-h) + 8px);
}

.page-news .news-hero {
  position: relative;
  padding: 52px 0 48px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 180, 255, 0.28) 0, transparent 44%),
    radial-gradient(circle at 12% 88%, rgba(255, 106, 0, 0.2) 0, transparent 42%),
    linear-gradient(125deg, rgba(0, 180, 255, 0.12), transparent 60%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 28px;
  width: 520px;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.22), rgba(255, 106, 0, 0.18), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
}

.page-news .news-hero__body {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-top: 16px;
}

.page-news .news-hero__title span {
  display: block;
}

.page-news .news-hero__title span:last-child {
  color: var(--c-orange);
}

.page-news .news-hero__lead {
  max-width: 720px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-news .news-hero__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 26px;
}

.page-news .news-hero__ticker span {
  display: inline-block;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--c-gray);
  background: rgba(30, 36, 43, 0.86);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-full);
}

.page-news .news-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 28px 0 8px;
  padding: 10px;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-full);
}

.page-news .news-cats__label {
  padding-left: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.page-news .news-cats__item {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gray);
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.page-news .news-cats__item:hover,
.page-news .news-cats__item:focus-visible {
  background: var(--c-orange);
  color: var(--c-bg);
  transform: translateY(-2px);
}

.page-news .news-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.page-news .report-layout {
  display: grid;
  gap: 24px;
}

.page-news .news-timeline {
  position: relative;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-orange), var(--c-blue) 80%, transparent);
}

.page-news .news-item {
  position: relative;
  margin: 0 0 22px var(--timeline-gutter);
  padding: 0;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: calc(4px - var(--timeline-gutter));
  top: 24px;
  width: var(--timeline-dot);
  height: var(--timeline-dot);
  border-radius: 50%;
  background: var(--c-bg);
  border: 3px solid var(--c-orange);
  box-shadow: 0 0 0 2px rgba(0, 180, 255, 0.3);
}

.page-news .news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 255, 0.5);
}

.page-news .news-item__cover {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--c-panel);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.page-news .news-item__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-item__body {
  padding: 20px;
}

.page-news .news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.page-news .news-item__round {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.page-news .news-item__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--c-white);
  margin-bottom: 8px;
}

.page-news .news-item__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-gray);
  margin-bottom: 14px;
}

.page-news .news-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.page-news .news-item__stats .stat--inline {
  margin: 0;
}

.page-news .report-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-self: start;
  padding: 18px;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .report-entry::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  border: 14px solid rgba(0, 180, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .report-entry__phone {
  position: relative;
  max-width: 240px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 6px solid #0D1115;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.page-news .report-entry__phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .report-entry__text {
  position: relative;
  z-index: 1;
}

.page-news .report-entry__text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  margin: 10px 0 8px;
}

.page-news .report-entry__text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
  margin-bottom: 16px;
}

.page-news .expert-feature {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .expert-feature__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-panel);
}

.page-news .expert-feature__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .expert-feature__content {
  padding: 24px;
}

.page-news .expert-feature__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.3;
  margin: 12px 0 10px;
}

.page-news .expert-feature__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-news .expert-compare {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.page-news .expert-compare__row {
  display: grid;
  grid-template-columns: 84px 1fr 104px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.page-news .expert-compare__label {
  color: var(--c-gray);
}

.page-news .expert-compare__track {
  display: block;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(170, 180, 192, 0.18);
  overflow: hidden;
}

.page-news .expert-compare__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c-orange), var(--c-blue));
}

.page-news .expert-compare__value {
  font-family: var(--font-display);
  font-size: 14px;
  text-align: right;
  color: var(--c-white);
  white-space: nowrap;
}

.page-news .expert-feature__action {
  margin-top: 20px;
}

.page-news .log-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .log-main {
  padding: 0;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .log-main__visual {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--c-panel);
}

.page-news .log-main__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .log-main__body {
  padding: 24px;
}

.page-news .log-main__body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.3;
  margin: 10px 0 8px;
}

.page-news .log-main__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-gray);
  margin-bottom: 18px;
}

.page-news .log-main__action {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-news .log-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.page-news .log-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 14px;
  background: var(--c-panel);
  border: 1px solid var(--stroke);
  border-left: 4px solid var(--c-orange);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-white);
  transition: background 0.24s ease, transform 0.24s ease;
}

.page-news .log-list__item:hover {
  background: rgba(0, 180, 255, 0.1);
  transform: translateX(4px);
}

.page-news .log-list__item .tag {
  flex-shrink: 0;
}

.page-news .btn {
  white-space: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 72px 0 64px;
  }

  .page-news .news-cats {
    margin-top: 36px;
  }

  .page-news .report-layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: start;
  }

  .page-news .expert-feature {
    grid-template-columns: 1fr 1.2fr;
  }

  .page-news .expert-feature__visual {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
  }

  .page-news .expert-feature__content {
    padding: 32px;
  }

  .page-news .log-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }
}
