.news-page {
  padding-top: 16px;
}

.news-page .content-page-panel + .content-page-panel {
  margin-top: 22px;
}

.news-hero {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
}

.news-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.news-hero p:last-child {
  margin-bottom: 0;
}

.news-filter-panel {
  padding-top: 16px;
}

.news-filter-topline {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.news-filter-topline p {
  color: #5b6e7f;
  font-size: 14px;
  margin: 0;
}

.news-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-filter-chip {
  align-items: center;
  appearance: none;
  background: #eef6fb;
  border: 1px solid #d8e4ef;
  border-radius: 999px;
  color: #2b6e9f;
  cursor: pointer;
  display: inline-flex;
  font-family: Ubuntu, "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-filter-chip:hover,
.news-filter-chip:focus {
  background: #dff0fb;
  border-color: #95c7e6;
  color: #184e74;
}

.news-filter-chip.is-active {
  background: linear-gradient(180deg, #58acd9 0%, #2f77b0 100%);
  border-color: #2f77b0;
  color: #fff;
}

.news-year-group[hidden] {
  display: none !important;
}

.news-year-group + .news-year-group {
  margin-top: 24px;
}

.news-year-heading {
  align-items: baseline;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.news-year-heading h3 {
  margin-bottom: 0;
}

.news-year-count {
  color: #5b6e7f;
  font-size: 14px;
}

.news-story-list {
  display: grid;
  gap: 18px;
}

.news-story-card {
  background: linear-gradient(180deg, #fbfdff 0%, #eef6fb 100%);
  border: 1px solid #d8e4ef;
  border-radius: 16px;
  overflow: hidden;
}

.news-story-summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  list-style: none;
  padding: 18px 22px;
}

.news-story-summary::-webkit-details-marker {
  display: none;
}

.news-story-summary h4 {
  margin: 0 0 6px;
  padding-top: 0;
}

.news-story-summary p {
  margin: 0;
}

.news-story-date {
  color: #2f77b0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.news-story-toggle {
  color: #2f77b0;
  font-family: Ubuntu, "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-story-card[open] .news-story-toggle::before {
  content: "Hide";
}

.news-story-card:not([open]) .news-story-toggle::before {
  content: "Read More";
}

.news-story-content {
  border-top: 1px solid #d8e4ef;
  padding: 20px 22px 24px;
}

.news-story-content > * + * {
  margin-top: 18px;
}

.news-story-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-story-figure {
  background: #fff;
  border: 1px solid #d8e4ef;
  border-radius: 14px;
  padding: 12px;
}

.news-story-figure img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.news-story-figure figcaption {
  color: #5b6e7f;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.news-story-links,
.news-resource-list {
  display: grid;
  gap: 10px;
}

.news-story-links ul,
.news-resource-list ul {
  margin: 0;
  padding-left: 18px;
}

.news-story-links li + li,
.news-resource-list li + li {
  margin-top: 8px;
}

.news-resource-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-resource-card {
  height: 100%;
}

.news-resource-card h4 {
  margin-bottom: 10px;
  padding-top: 0;
}

@media (max-width: 979px) {
  .news-hero,
  .news-resource-grid,
  .news-story-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .news-page {
    padding-top: 8px;
  }

  .news-filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .news-filter-chip {
    flex: 0 0 auto;
  }

  .news-story-summary {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .news-story-content {
    padding: 18px 16px 20px;
  }
}
