.news-page .news-hero {
  min-height: 78vh;
}

.news-page .news-main {
  background:
    radial-gradient(circle at 8% 0%, rgba(229,57,53,0.1), transparent 32%),
    linear-gradient(180deg, #050607 0%, #020203 100%);
}

.news-page .news-board {
  max-width: 1440px;
  margin: 0 auto;
}

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

.news-sidebar {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 18px;
}

.news-sidebar-panel {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(229,57,53,0.09), transparent 36%),
    linear-gradient(180deg, rgba(17,18,21,0.98), rgba(8,9,11,0.98));
  padding: 22px;
}

.news-machine-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.news-machine-links a,
.news-contact-panel a {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #e53935;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.035);
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.news-machine-links a:hover,
.news-contact-panel a:hover {
  color: #ffffff;
  border-color: rgba(229,57,53,0.5);
  background: rgba(229,57,53,0.1);
  transform: translateX(4px);
}

.news-machine-links span {
  color: #e53935;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-machine-links strong {
  color: rgba(255,255,255,0.94);
  font-size: 15px;
  line-height: 1.35;
}

.news-contact-panel p {
  margin: 14px 0 16px;
  color: rgba(226,232,242,0.78);
  line-height: 1.65;
}

.news-contact-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-weight: 800;
}

.news-feed {
  display: grid;
  gap: 22px;
}

.news-story {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(229,57,53,0.08), transparent 34%),
    linear-gradient(180deg, rgba(18,19,22,0.98), rgba(8,9,11,0.98));
}

.news-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(236,242,252,0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-story-meta span:first-child {
  color: #e53935;
}

.news-story h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.15;
  max-width: 920px;
}

.news-story p {
  margin: 0;
  max-width: 940px;
  color: rgba(226,232,242,0.84);
  font-size: 17px;
  line-height: 1.72;
}

.news-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 2px;
}

.news-photo-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-photo-grid img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.news-photo-grid:not(.news-photo-grid--three) img {
  height: auto;
  max-height: 520px;
}

@media (max-width: 1100px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .news-machine-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-page .news-hero {
    min-height: 64vh;
  }

  .news-story {
    padding: 22px 18px;
  }

  .news-machine-links,
  .news-photo-grid--three {
    grid-template-columns: 1fr;
  }

  .news-photo-grid img {
    height: auto;
  }
}
