.updates-page .site-nav .nav-current {
  color: var(--ink);
}

.updates-page .site-nav .nav-current::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 5px;
  background: var(--red);
}

.updates-main {
  overflow: hidden;
}

.updates-hero {
  width: min(1120px, calc(100% - 64px));
  min-height: 580px;
  margin: 0 auto;
  padding: 112px 0 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.updates-hero h1 {
  margin: 24px 0 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .86;
}

.updates-hero h1 em {
  color: var(--red);
  font-style: normal;
}

.updates-hero > p {
  max-width: 670px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.updates-jump {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.updates-jump span {
  color: var(--red);
  font-size: 18px;
}

.updates-feed {
  padding: 108px max(32px, calc((100% - 1120px) / 2)) 124px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.feed-heading {
  padding-bottom: 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--ink);
}

.feed-heading h2 {
  margin-top: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
}

.feed-heading > p {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.product-update {
  padding: 58px 0 64px;
  display: grid;
  grid-template-columns: 170px minmax(0, 720px);
  gap: clamp(36px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.update-date time {
  display: flex;
  flex-direction: column;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.update-date strong {
  color: var(--red);
  font-size: 54px;
  line-height: .9;
}

.update-date span {
  margin-top: 8px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.update-category {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.update-copy h3 {
  max-width: 680px;
  margin: 18px 0 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.update-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.update-copy p + p {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .updates-hero {
    width: min(100% - 32px, 1120px);
    min-height: 500px;
    padding: 76px 0 80px;
  }

  .updates-hero h1 {
    font-size: clamp(58px, 19vw, 78px);
  }

  .updates-hero > p {
    font-size: 18px;
  }

  .updates-feed {
    padding: 78px 16px 88px;
  }

  .feed-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-update {
    padding: 44px 0 50px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .update-date time {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .update-date strong {
    font-size: 38px;
  }

  .update-date span {
    margin-top: 0;
  }

  .update-copy h3 {
    font-size: 39px;
  }

}
