/* Shared utilities and cross-page components */
:root {
  --shared-space-32: 32px;
}

.mt-32 { margin-top: var(--shared-space-32) !important; }
.mw-none { max-width: none !important; }
.stack-6 { display: flex !important; flex-direction: column !important; gap: 6px !important; }
.tiny-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.download-hub {
  background: #f7f5f0;
  color: #17170e;
  min-height: 100vh;
  font-family: "Be Vietnam Pro", sans-serif;
}
.download-hub a { text-decoration: none; color: inherit; }
.download-nav {
  background: #17170e;
  color: #fff;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.download-brand { font-size: 16px; font-weight: 800; letter-spacing: 0.3px; }
.download-brand em { color: #e06010; font-style: normal; }
.download-home {
  font-size: 12px;
  font-weight: 700;
  background: #c45500;
  color: #fff;
  padding: 7px 12px;
  border-radius: 2px;
}
.download-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}
.download-hero {
  border: 1px solid #cdc9bb;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.download-title { font-size: 28px; font-weight: 800; line-height: 1.15; margin-bottom: 8px; }
.download-sub { font-size: 13px; color: #767066; }
.download-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.download-chip {
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #efc090;
  background: #fdf3ea;
  color: #c45500;
  border-radius: 999px;
  padding: 4px 10px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.download-card {
  border: 1px solid #cdc9bb;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.download-card.active {
  border-color: #c45500;
  box-shadow: 0 0 0 2px rgba(196, 85, 0, 0.14);
}
.download-card-hd {
  background: #17170e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-card-bd { padding: 12px; }
.download-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.download-link {
  border: 1px solid #cdc9bb;
  background: #f7f5f0;
  padding: 9px 10px;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-link:hover { border-color: #c45500; color: #c45500; }
.download-note {
  margin-top: 20px;
  border-left: 3px solid #c45500;
  background: #fdf3ea;
  padding: 10px 12px;
  font-size: 12px;
  color: #34342a;
}

@media (max-width: 768px) {
  .download-nav { padding: 0 14px; }
  .download-wrap { padding: 20px 14px 42px; }
  .download-title { font-size: 22px; }
  .download-grid { grid-template-columns: 1fr; }
}
