.news-page {
  min-height: 70vh;
  background: #f7f9fb;
}

.news-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.news-masthead {
  padding: clamp(52px, 7vw, 90px) 0 44px;
  border-bottom: 1px solid #dbe4eb;
  background:
    linear-gradient(rgba(13, 79, 145, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 145, 0.04) 1px, transparent 1px),
    var(--color-white);
  background-size: 52px 52px;
}

.news-masthead__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 48px;
  align-items: end;
}

.news-eyebrow {
  margin: 0 0 14px;
  color: var(--color-emerald);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-masthead h1 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.92;
}

.news-masthead h1 span {
  color: var(--color-primary);
}

.news-masthead__summary {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.news-verified {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  color: var(--color-navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-verified::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-emerald);
  box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.12);
  content: "";
}

.news-dashboard {
  padding: 34px 0 clamp(72px, 9vw, 120px);
}

.news-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #d5e0e8;
}

.news-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-filter {
  min-height: 38px;
  border: 1px solid #c9d6e1;
  border-radius: 4px;
  padding: 0 14px;
  color: #526171;
  background: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.news-filter:hover,
.news-filter:focus-visible,
.news-filter.is-active {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
}

.news-search {
  position: relative;
}

.news-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.news-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c9d6e1;
  border-radius: 4px;
  padding: 0 42px 0 14px;
  color: var(--color-navy);
  background: var(--color-white);
  outline: none;
}

.news-search input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 79, 145, 0.1);
}

.news-search::after {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 12px;
  height: 12px;
  border: 2px solid #647487;
  border-radius: 50%;
  content: "";
}

.news-search::before {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 12px;
  width: 7px;
  height: 2px;
  background: #647487;
  content: "";
  transform: rotate(45deg);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 38px;
  padding-top: 32px;
}

.news-feed {
  display: grid;
}

.news-item {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 34px;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #d5e0e8;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item__meta {
  display: grid;
  gap: 9px;
}

.news-item__date {
  color: var(--color-navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.news-item__authority {
  color: #718090;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-item__status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 3px;
  color: #07583f;
  background: #dff5ed;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-item__status--upcoming {
  color: #755600;
  background: #fff1bb;
}

.news-item__status--result {
  color: #0b4d8b;
  background: #dcecfb;
}

.news-item__status--advisory {
  color: #77421d;
  background: #f9e6d8;
}

.news-item__category {
  margin: 0 0 8px;
  color: var(--color-emerald);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-item h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.news-item__summary {
  max-width: 760px;
  margin: 12px 0 0;
  line-height: 1.65;
}

.news-item__action {
  display: inline-flex;
  margin-top: 15px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.news-item__action:hover,
.news-item__action:focus-visible {
  text-decoration: underline;
}

.news-item__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd7e1;
  border-radius: 50%;
  color: var(--color-primary);
  text-decoration: none;
}

.news-item__arrow:hover,
.news-item__arrow:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
}

.news-empty {
  padding: 54px 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.news-side {
  align-self: start;
  border-top: 4px solid var(--color-emerald);
  background: var(--color-navy);
  color: var(--color-white);
}

.news-side__inner {
  padding: 28px;
}

.news-side__label {
  margin: 0;
  color: #58d8c8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-side h2 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.15;
}

.news-side ul {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.news-side li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  line-height: 1.55;
}

.news-side a {
  display: inline-flex;
  margin-top: 22px;
  color: #63dccd;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.news-notice {
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid #d5e0e8;
  border-bottom: 1px solid #d5e0e8;
  font-size: 0.8rem;
  line-height: 1.6;
}

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

  .news-side {
    width: min(100%, 520px);
  }
}

@media (max-width: 680px) {
  .news-shell {
    width: min(100% - 28px, 1240px);
  }

  .news-masthead {
    padding-top: 48px;
  }

  .news-masthead__top {
    gap: 24px;
  }

  .news-masthead h1 {
    font-size: 3.7rem;
  }

  .news-toolbar {
    grid-template-columns: 1fr;
  }

  .news-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .news-filter {
    width: 100%;
  }

  .news-item {
    grid-template-columns: 1fr 34px;
    gap: 14px;
  }

  .news-item__meta {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
}
