
:root {
  --sp-detail-text-max: 800px;
}

.detail-section {
  padding: var(--sp-space-24) 0;
  border-bottom: 1px solid var(--sp-color-border);
  scroll-margin-top: calc(var(--sp-header-height) + var(--sp-space-6));
}

.detail-section .container {
  max-width: var(--sp-detail-text-max);
}

.detail-title {
  font-family: var(--sp-font-brand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--sp-color-primary);
  margin-bottom: var(--sp-space-6);
}

.detail-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--sp-color-text-secondary);
}

.detail-text p {
  margin-bottom: var(--sp-space-6);
}

.detail-text p:last-child {
  margin-bottom: 0;
}

.detail-bullets {
  margin-top: var(--sp-space-8);
  padding-left: 0;
  list-style: none;
}

.detail-bullets li {
  margin-bottom: var(--sp-space-4);
  color: var(--sp-color-text-secondary);
  padding-left: var(--sp-space-6);
  position: relative;
}

.detail-bullets li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--sp-color-primary);
}

.detail-bullets li strong {
  color: var(--sp-color-text);
}
