.space-news {
  margin: 2px 0 38px;
}
.news-heading {
  max-width: 700px;
}
.news-heading h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 12px 0;
}
.news-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #b2c7d5;
}
.news-periods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 16px;
}
.news-periods button {
  padding: 11px 18px;
  min-height: 44px;
  font-size: 14px;
  border-radius: 8px;
}
.news-periods button.active {
  background: #173e43;
  color: #b9ffeb;
  border-color: #86d9c9;
  box-shadow: 0 0 18px #69eed015;
}
.news-status {
  font-size: 14px;
  color: #9bb6c8;
  line-height: 1.6;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #38566b;
  border-radius: 14px;
  background: linear-gradient(135deg, #122633, #121d31);
  position: relative;
  overflow: hidden;
}
.news-card:first-child {
  grid-column: 1/-1;
  background:
    radial-gradient(ellipse at 100% 0, #24575366, transparent 60%),
    linear-gradient(115deg, #142737, #1e203b);
  border-color: #658091;
}
.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #acc0ce;
}
.news-source {
  color: #b0eee0;
}
.news-topic {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bba8e6;
}
.news-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: #edf5fb;
  text-decoration: none;
}
.news-card:first-child .news-title {
  font-size: 27px;
  max-width: 850px;
}
.news-title:hover {
  text-decoration: underline;
  text-decoration-color: #6bc8b3;
  text-underline-offset: 5px;
}
.news-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
}
.news-actions button {
  font-size: 14px;
}
.news-footnote {
  font-size: 14px;
  line-height: 1.7;
  color: #94adbf;
  max-width: 850px;
}
.news-empty {
  grid-column: 1/-1;
  padding: 30px;
  border: 1px dashed #3d5b70;
  border-radius: 12px;
  line-height: 1.7;
  font-size: 16px;
  color: #b8cbd9;
}
@media (max-width: 650px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-heading h2 {
    font-size: 25px;
  }
  .news-card {
    padding: 18px;
  }
  .news-title,
  .news-card:first-child .news-title {
    font-size: 21px;
  }
  .news-meta {
    font-size: 12px;
  }
  .news-periods button {
    padding: 10px 12px;
  }
}

.news-summary {
  font-size: 16px;
  line-height: 1.75;
  color: #b8cbd9;
  margin: 0;
}
