.news-page {
  --news-navy: #0b1647;
  --news-blue: #007ced;
  --news-red: #d71920;
  --news-gold: #f4b41a;
  --news-muted: #64748b;
}

.news-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 54px;
  padding: 58px;
  color: #fff;
  background: linear-gradient(135deg, #071239 0%, #10286d 60%, #007ced 100%);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(11, 22, 71, .22);
}

.news-hero:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  top: -130px;
  border: 52px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.news-eyebrow,
.news-card-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-eyebrow {
  margin-bottom: 18px;
  color: #fff;
}

.news-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 48px;
  line-height: 1.14;
}

.news-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.75;
}

.news-button {
  display: inline-block;
  margin: 4px 10px 4px 0;
  padding: 12px 22px;
  color: var(--news-navy);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  font-weight: 600;
}

.news-button:hover {
  color: #fff;
  background: transparent;
}

.news-button.secondary {
  color: #fff;
  background: transparent;
}

.news-button.secondary:hover {
  color: var(--news-navy);
  background: #fff;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 66px;
}

.news-feature-media {
  overflow: hidden;
  background: #eef2f7;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.news-feature-media img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.news-feature-copy {
  padding: 14px 0;
}

.news-card-date {
  margin-bottom: 12px;
  color: var(--news-red);
}

.news-feature-copy h2 {
  margin: 0 0 16px;
  color: var(--news-navy);
  font-size: 30px;
  line-height: 1.3;
}

.news-feature-copy p {
  margin-bottom: 18px;
  font-size: 15px;
}

.news-section-heading {
  margin-bottom: 28px;
}

.news-section-heading h2 {
  margin-bottom: 8px;
  color: var(--news-navy);
}

.news-section-heading p {
  color: var(--news-muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.news-card {
  position: relative;
  padding: 30px;
  border: 1px solid #e7ebf1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .11);
}

.news-card h3 {
  margin: 0 0 12px;
  color: var(--news-navy);
  line-height: 1.35;
}

.news-card p {
  margin-bottom: 18px;
}

.news-card a,
.news-feature-copy .news-source-link {
  font-weight: 600;
}

.news-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 10px;
  color: #15549a;
  background: #eaf4ff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-timeline {
  position: relative;
  margin: 0 0 20px 9px;
  padding: 4px 0 4px 34px;
  border-left: 2px solid #dce7f5;
}

.news-timeline-item {
  position: relative;
  margin-bottom: 34px;
}

.news-timeline-item:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: -42px;
  top: 5px;
  background: var(--news-blue);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--news-blue);
}

.news-timeline-item h3 {
  margin: 3px 0 7px;
  color: var(--news-navy);
}

.news-timeline-item p {
  max-width: 850px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 820px) {
  .news-hero {
    padding: 38px 28px;
    border-radius: 18px;
  }

  .news-hero h1 {
    font-size: 34px;
  }

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

@media only screen and (max-width: 480px) {
  .news-hero h1 {
    font-size: 29px;
  }

  .news-card {
    padding: 24px;
  }
}
