/**
 * Custom Subheading Block Styles
 */

/* 基本スタイル */
.custom-block-subheading {
  line-height: 1.6;
  font-weight: 700;
  font-family: var(--custom-font-family);
  color: var(--custom-text-primary);
}

/* テキスト配置 */
.custom-block-subheading.text-align-left {
  text-align: left;
}

.custom-block-subheading.text-align-center {
  text-align: center;
}

.custom-block-subheading.text-align-right {
  text-align: right;
}

/* テキスト色 */
.custom-block-subheading.color-secondary {
  color: var(--custom-text-secondary);
}

.custom-block-subheading.color-tertiary {
  color: var(--custom-text-tertiary);
}

/* Extra Large サイズ */
.custom-block-subheading.size-extra-large {
  font-size: 40px;
  margin: 0 auto 1.2rem auto !important;
}

/* Large サイズ */
.custom-block-subheading.size-large {
  font-size: 24px;
  margin: 0 auto 1rem auto !important;
}

/* Middle サイズ */
.custom-block-subheading.size-middle {
  font-size: 20px;
  margin: 0 auto 0.8rem auto !important;
}

/* Small サイズ */
.custom-block-subheading.size-small {
  font-size: 18px;
  padding-left: 12px;
  position: relative;
  margin: 0 auto 0.6rem auto !important;
}

.custom-block-subheading.size-small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--custom-text-primary);
}

/* Small サイズの疑似要素色対応 */
.custom-block-subheading.size-small.color-secondary::before {
  background-color: var(--custom-text-secondary);
}

.custom-block-subheading.size-small.color-tertiary::before {
  background-color: var(--custom-text-tertiary);
}

/* タブレット・スマートフォン対応 */
@media (max-width: 1024px) {
  .custom-block-subheading.size-extra-large {
    font-size: 32px;
  }

  .custom-block-subheading.size-large {
    font-size: 20px;
  }

  .custom-block-subheading.size-middle {
    font-size: 18px;
  }

  .custom-block-subheading.size-small {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .custom-block-subheading.size-extra-large {
    font-size: 28px;
  }

  .custom-block-subheading.size-large {
    font-size: 20px;
  }

  .custom-block-subheading.size-middle {
    font-size: 18px;
  }

  .custom-block-subheading.size-small {
    font-size: 16px;
  }
}
