/* Shared foundation v2 for the campaign and soundtrack modules. */
:root {
  color: #e9e5dc;
  background: #090b0b;
  font-family: "Noto Serif SC", "Songti SC", serif;
  --module-red: #d94a40;
  --module-gold: #b79a68;
  --module-rule: rgba(233, 229, 220, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #090b0b;
}

a {
  color: inherit;
  text-decoration: none;
}

.module-page {
  width: min(100%, 1540px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 46px 64px;
}

.module-header {
  position: relative;
  z-index: 20;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--module-rule);
  color: #969993;
}

.module-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: #e9e5dc;
}

.module-brand .qinqin-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.module-brand .qinqin-brand-name {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.module-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.module-edition {
  justify-self: end;
  color: #555955;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.module-hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  padding: 90px 24px 60px;
  border-bottom: 1px solid var(--module-rule);
}

.module-kicker {
  color: var(--module-red);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.module-hero h1 {
  max-width: 920px;
  margin: 22px 0 28px;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.module-hero p {
  max-width: 780px;
  margin: 0;
  color: #999b96;
  font-size: 15px;
  line-height: 2;
}

.module-status {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(183, 154, 104, 0.32);
}

.module-status span,
.module-card span {
  color: var(--module-gold);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.module-status strong {
  display: block;
  margin-top: 13px;
  font-size: 23px;
  font-weight: 300;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--module-rule);
}

.module-card {
  min-height: 260px;
  padding: 42px 34px;
  border-right: 1px solid var(--module-rule);
}

.module-card:last-child {
  border-right: 0;
}

.module-card h2 {
  margin: 42px 0 14px;
  font-size: 28px;
  font-weight: 300;
}

.module-card p {
  margin: 0;
  color: #858883;
  font-size: 13px;
  line-height: 1.9;
}

.module-track-action {
  margin-top: 28px;
  padding: 9px 13px;
  color: #777a75;
  border: 1px solid rgba(233, 229, 220, 0.16);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.module-track-action:disabled {
  cursor: default;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .module-page {
    padding: 0 20px 40px;
  }

  .module-header {
    grid-template-columns: 1fr auto;
  }

  .module-header > nav {
    display: none;
  }

  .module-edition {
    display: none;
  }

  .module-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 4px 40px;
  }

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

  .module-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--module-rule);
  }
}
