body.page--news {
  max-width: none;
  padding: 0;
  margin: 0;
}

.news {
  --news-pad: 6vw;
  max-width: none;
  margin: 0;
  padding: 90px var(--news-pad) 140px calc(190px + var(--news-pad));
  box-sizing: border-box;
}

.news-hero {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.news-newsletter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  text-align: center;
  letter-spacing: 0.02em;
}

.news-newsletter__border {
  position: absolute;
  inset: -10px -14px;
  pointer-events: none;
}

.news-newsletter__border svg {
  width: 100%;
  height: 100%;
  display: block;
}

.news-newsletter__border svg .st0,
.news-newsletter__border svg [stroke] {
  fill: #F7F7EB;
  stroke: #000;
  stroke-width: 2px;
}

.news-newsletter__text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.news-title-wrap {
  height: 30vh;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
}

.news-title-wrap svg {
  width: min(90%, 1100px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.news-title-wrap svg .st0 {
  stroke-width: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.news-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-meta {
  display: grid;
  grid-template-columns: 80px 180px minmax(0, 1fr);
  align-items: baseline;
  gap: 12px 20px;
}

.news-year,
.news-category,
.news-link {
  font-size: 0.95rem;
}

.news-category {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-link {
  justify-self: end;
  text-transform: uppercase;
}

.news-content {
  display: grid;
  gap: 24px;
}

.news-row--with-image .news-content {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: start;
}

.news-row--simple .news-content {
  grid-template-columns: minmax(0, 1fr);
}

.news-text {
  font-size: 1rem;
}

.news-image {
  margin: 0;
}

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

.news-divider {
  display: block;
}

.news-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.news-divider svg .st0,
.news-divider svg [stroke] {
  stroke: #000;
  fill: none;
  stroke-width: 2px;
}

.news-empty {
  font-size: 1rem;
}

@media screen and (max-width: 64rem) {
  .news {
    padding: 80px 6vw 120px 6vw;
  }

  .news-title-wrap svg {
    width: 100%;
  }

  .news-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-link {
    justify-self: start;
  }

  .news-row--with-image .news-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-height: 699px) {
  .news {
    padding: 80px 6vw 120px 6vw;
  }
}
