.logo-mark {
  border-radius: 7px;
}

.hero h1,
.section-heading h2 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: 72px;
}

.asset-note a {
  color: #8197a7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.topic-grid > a {
  display: block;
  min-height: 142px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}

.topic-grid > a:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.topic-grid span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.topic-grid b {
  display: block;
  margin-top: 9px;
  font-size: 16px;
}

.topic-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 23px 26px;
  background: #14212a;
  border: 1px solid #35505b;
  border-left: 3px solid var(--amber);
}

.download-panel-copy {
  min-width: 0;
}

.download-panel-copy .eyebrow {
  margin-bottom: 7px;
}

.download-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.download-panel-copy > p:last-child {
  max-width: 650px;
  margin: 7px 0 0;
  color: #aabac3;
  font-size: 12px;
  line-height: 1.75;
}

.download-panel-copy strong {
  color: var(--amber);
}

.download-panel-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 17px;
}

.download-detail {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.download-detail span {
  margin-left: 4px;
}

.article-hero-actions {
  margin-top: 25px;
}

.mobile-download-bar {
  display: none;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 48px;
    letter-spacing: 0;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid > a {
    min-height: 120px;
  }

  .download-panel {
    display: block;
    margin-top: 14px;
    padding: 19px 16px;
  }

  .download-panel h2 {
    font-size: 19px;
  }

  .download-panel-actions {
    display: block;
    margin-top: 15px;
  }

  .download-panel-actions .button {
    width: 100%;
    justify-content: center;
  }

  .download-detail {
    display: block;
    margin-top: 13px;
    text-align: center;
  }

  .article-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .mobile-download-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 16, 22, .97);
    border-top: 1px solid #354a55;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, .3);
  }

  .mobile-download-bar span {
    min-width: 0;
  }

  .mobile-download-bar b,
  .mobile-download-bar small {
    display: block;
  }

  .mobile-download-bar b {
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-download-bar small {
    margin-top: 1px;
    color: #8da0ad;
    font-size: 9px;
  }

  .mobile-download-bar > a {
    flex: 0 0 auto;
    padding: 9px 13px;
    background: var(--amber);
    color: #10151a;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
  }
}
