/* ── Body ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  padding-bottom: var(--bottom-nav-height);
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}
/* Home page mobile: reel takes over */
@media (max-width: 1023px) {
  body.home-mobile {
    overflow: hidden;
  }
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); color: var(--color-text-light); }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-12) 0;
}
@media (min-width: 1024px) {
  .section { padding: var(--space-16) 0; }
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.section-title {
  margin-bottom: var(--space-6);
}

.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── Mobile banners (below 1024px) ── */
@media (max-width: 1023px) {
  .dt-sidebar__banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    padding: 0 var(--space-4);
    margin-bottom: var(--space-6);
  }
  .dt-sidebar__banner {
    display: block;
    border-radius: 8px;
    overflow: hidden;
  }
  .dt-sidebar__banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
}
