.chapter-label {
  width: 100%;
  background: linear-gradient(
    180deg,
    #EEF3FE 0%,
    #F5F5F9 40%,
    #FFFFFF 100%
  );
  padding: 80px 24px 80px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

.chapter-label-inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.chapter-label-line {
  flex: 1;
  height: 0.5px;
  background: rgba(0, 0, 0, 0.18);
  max-width: 120px;
}

.chapter-label-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #0A0A14;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .chapter-label {
    padding: 40px 24px 0;
  }
  .chapter-label-line {
    max-width: 60px;
  }
  .chapter-label-text {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}
