.banner-title {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--color-text));
  word-break: break-word;
}

/* 文本对齐 */
.banner-title.text-align-left {
  text-align: left;
}

.banner-title.text-align-center {
  text-align: center;
}

.banner-title.text-align-right {
  text-align: right;
}

/* H1 */
h1.banner-title {
  font-size: 48px;
}

/* H2 - 默认 */
h2.banner-title {
  font-size: 40px;
}

/* H3 */
h3.banner-title {
  font-size: 32px;
}

/* H4 */
h4.banner-title {
  font-size: 28px;
}

/* H5 */
h5.banner-title {
  font-size: 24px;
}

/* H6 */
h6.banner-title {
  font-size: 20px;
}

@media (max-width: 959px) {
  h1.banner-title {
    font-size: 28px;
  }

  h2.banner-title {
    font-size: 24px;
  }

  h3.banner-title {
    font-size: 20px;
  }

  h4.banner-title {
    font-size: 18px;
  }

  h5.banner-title {
    font-size: 16px;
  }

  h6.banner-title {
    font-size: 14px;
  }
}

