:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f5f8;
  color: #1d2430;
}

body {
  margin: 0;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid #cfd8e3;
}

.eyebrow {
  margin: 0 0 10px;
  color: #396f84;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4c596b;
  font-size: 1.08rem;
  line-height: 1.55;
}

.downloads {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #ffffff;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

article p {
  min-height: 84px;
  margin: 0 0 18px;
  color: #596678;
  line-height: 1.45;
}

a {
  color: #11677d;
  font-weight: 700;
}

.pending,
a.disabled {
  color: #778292;
  font-weight: 700;
}

a.disabled {
  pointer-events: none;
}

.ghost-link {
  white-space: nowrap;
}

.metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #cfd8e3;
}

@media (max-width: 900px) {
  .hero {
    align-items: start;
    flex-direction: column;
  }

  .downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .downloads {
    grid-template-columns: 1fr;
  }
}
