.news-section {
  padding-block: clamp(78px, 9vw, 118px);
  background: #fbfbfa;
  color: var(--ink);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.news-panel {
  max-height: 292px;
  overflow-y: auto;
  border: 1px solid rgba(25, 26, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-lift);
  scrollbar-color: rgba(25, 26, 29, 0.32) transparent;
}

.news-panel:focus-visible {
  outline: 3px solid rgba(45, 107, 87, 0.2);
  outline-offset: 3px;
}

.news-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(25, 26, 29, 0.1);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-item p {
  margin: 0;
  color: var(--muted);
}

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

@media (max-width: 640px) {
  .news-section {
    padding-block: 64px;
  }

  .news-layout {
    gap: 24px;
  }

  .news-panel {
    max-height: none;
    box-shadow: var(--shadow);
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .news-item time {
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .news-item {
    padding: 16px;
  }
}
