.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 52rem) minmax(0, 18rem);
  gap: 1.5rem;
  align-items: start;
  padding-top: 0.25rem;
}

.news-controls {
  position: sticky;
  top: 5.25rem;
}

.news-controls-inner {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
}

.news-controls-title {
  margin: 0;
  font-weight: 700;
  color: var(--ds-blue-dark);
}

.news-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.35rem;
  padding: 0 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ds-blue);
  font-weight: 600;
  cursor: pointer;
}

.news-chip[aria-pressed="true"] {
  background: var(--ds-blue);
  border-color: var(--ds-blue);
  color: #ffffff;
}

.news-chip:hover,
.news-chip:focus-visible {
  border-color: rgba(6, 66, 112, 0.65);
}

.news-field {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.news-label {
  font-weight: 600;
  line-height: 1.2;
}

.news-field input,
.news-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.35);
  font: inherit;
  min-height: 2.85rem;
}

.news-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.news-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.news-clear {
  border: 1px solid rgba(6, 66, 112, 0.35);
  background: rgba(6, 66, 112, 0.06);
  color: var(--ds-blue-dark);
  border-radius: 0.75rem;
  height: 2.35rem;
  padding: 0 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.news-clear:hover,
.news-clear:focus-visible {
  background: rgba(6, 66, 112, 0.10);
  border-color: rgba(6, 66, 112, 0.55);
}

.news-controls-note {
  margin: 0.9rem 0 0;
  color: #4f7392;
  font-size: 0.95rem;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.news-item {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
}

.news-item h2 {
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}

.news-item p {
  margin: 0;
}

.news-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .news-controls {
    position: static;
  }
}
