.news-section {
  --newsroom-content: min(1087px, calc(100vw - 96px));
  position: relative;
  width: var(--newsroom-content);
  margin: 176px auto 0;
  padding-bottom: 92px;
  color: #ffffff;
  font-family: "fort", sans-serif;
}
.news-section__rule {
  width: 100%;
  height: 2px;
  margin-bottom: 16px;
  background: rgba(209, 146, 101, 0.78);
}
.news-section__eyebrow, .news-section__title,
.news-section .news-card {
  mix-blend-mode: screen;
}
.news-section__eyebrow {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.news-section__title {
  width: min(501px, 100%);
  margin: 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}
.news-section__action {
  width: 195px;
  margin-top: 56px;
  margin-left: auto;
  display: flex;
}

.news-grid {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-top: 94px;
}

.news-card {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 160ms ease;
}
.news-card::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 21px;
  height: 19px;
  background: url("/media/kyveris/news-arrow.svg") center/contain no-repeat;
}
.news-card:hover, .news-card:focus-visible {
  opacity: 0.8;
}
.news-card:focus-visible {
  outline: 1px solid rgba(209, 146, 101, 0.9);
  outline-offset: 12px;
}
.news-card time {
  display: block;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.news-card h3 {
  width: min(338px, calc(100% - 34px));
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}
.news-card p {
  width: min(317px, 100%);
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
}

.news-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.news-popup[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.news-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.news-popup__content {
  position: relative;
  width: min(900px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  color: #333333;
}
.news-popup__close {
  position: sticky;
  top: 2rem;
  right: 1.5rem;
  z-index: 1;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
  transition: color 160ms ease;
}
.news-popup__close:hover, .news-popup__close:focus-visible {
  color: #d19265;
}
.news-popup__article {
  padding: 3rem;
}
.news-popup__header {
  margin-bottom: 2rem;
}
.news-popup__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: #d19265;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-popup__article h1 {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
}
.news-popup__date {
  display: block;
  color: #777777;
  font-size: 0.95rem;
}
.news-popup__media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.news-popup__media-item {
  flex: 1 1 300px;
  margin: 0;
}
.news-popup__media-item img,
.news-popup__media-item video {
  width: 100%;
  height: auto;
  display: block;
}
.news-popup__body {
  color: #444444;
  font-size: 1rem;
  line-height: 1.8;
}
.news-popup__body p {
  margin: 0 0 1.5rem;
}

@media (max-width: 1024px) {
  .news-section {
    --newsroom-content: calc(100vw - 48px);
  }
  .news-grid {
    gap: 34px;
  }
}
@media (max-width: 760px) {
  .news-section {
    --newsroom-content: min(100vw - 32px, 620px);
    margin-top: 72px;
    padding-bottom: 92px;
  }
  .news-section__action {
    margin-left: 0;
  }
  .news-grid {
    flex-direction: column;
    gap: 42px;
    margin-top: 64px;
  }
  .news-card {
    width: 100%;
  }
  .news-card p {
    width: 100%;
  }
  .news-popup {
    align-items: stretch;
  }
  .news-popup__content {
    width: 100%;
    max-height: 100vh;
  }
  .news-popup__article {
    padding: 2rem;
  }
  .news-popup__article h1 {
    font-size: 1.5rem;
  }
}
