h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bm-ink);
  font-family: var(--bm-font-editorial);
  font-weight: var(--bm-weight-bold);
  line-height: var(--bm-leading-tight);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--bm-text-4xl);
}

h2 {
  font-size: var(--bm-text-3xl);
}

h3 {
  font-size: var(--bm-text-2xl);
}

h4 {
  font-size: var(--bm-text-xl);
}

h5 {
  font-size: var(--bm-text-lg);
}

h6 {
  font-size: var(--bm-text-base);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--bm-text-5xl);
  }

  h2 {
    font-size: var(--bm-text-4xl);
  }

  h3 {
    font-size: var(--bm-text-3xl);
  }
}

.bm-heading-display {
  font-size: var(--bm-text-4xl);
  font-weight: var(--bm-weight-bold);
  line-height: var(--bm-leading-tight);
  letter-spacing: -0.03em;
  color: var(--bm-ink);
}

@media (min-width: 768px) {
  .bm-heading-display {
    font-size: var(--bm-text-5xl);
  }
}

.bm-kicker {
  display: block;
  font-size: var(--bm-text-xs);
  font-weight: var(--bm-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bm-ink-secondary);
  margin-bottom: var(--bm-space-2);
}

p {
  margin-bottom: var(--bm-space-4);
}

p:last-child {
  margin-bottom: 0;
}

.bm-text-lead {
  font-size: var(--bm-text-lg);
  line-height: var(--bm-leading-relaxed);
  color: var(--bm-ink-secondary);
}

.bm-text-body {
  font-size: var(--bm-text-base);
  line-height: var(--bm-leading-normal);
  color: var(--bm-ink);
}

.bm-text-secondary {
  font-size: var(--bm-text-sm);
  line-height: var(--bm-leading-normal);
  color: var(--bm-ink-secondary);
}

.bm-caption {
  font-size: var(--bm-text-xs);
  line-height: var(--bm-leading-normal);
  color: var(--bm-ink-secondary);
}

.bm-text-compatibility {
  font-size: var(--bm-text-xs);
  font-weight: var(--bm-weight-regular);
  color: var(--bm-ink-secondary);
  letter-spacing: -0.01em;
}

.bm-price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--bm-space-2);
  font-weight: var(--bm-weight-bold);
  font-size: var(--bm-text-base);
  color: var(--bm-ink);
}

.bm-price--sale {
  color: var(--bm-brand);
}

.bm-price--regular-del {
  font-size: var(--bm-text-sm);
  font-weight: var(--bm-weight-regular);
  color: var(--bm-ink-secondary);
  text-decoration: line-through;
}

.bm-text-left {
  text-align: left;
}

.bm-text-center {
  text-align: center;
}

.bm-text-right {
  text-align: right;
}