/* SSEED — shared subtitle accent: text + underline stack, skew blocks on the right */

.sseed-subtitle-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 14px;
}

.text-center .sseed-subtitle-wrap,
.sseed-subtitle-wrap.sseed-subtitle-wrap--center {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.sseed-subtitle-wrap.sseed-subtitle-wrap--center .sseed-subtitle-main {
  align-items: center;
}

.sseed-subtitle-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.sseed-subtitle-main .it-subtitle {
  color: var(--sseed-svc-yellow, #faa719);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.sseed-subtitle-main .it-subtitle.subtitle-yellow,
.sseed-subtitle-main .it-subtitle.text-white {
  color: var(--sseed-svc-yellow, #faa719);
}

.sseed-subtitle-main .it-subtitle::after {
  content: none;
}

.sseed-subtitle-skew {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  flex: 0 0 auto;
  padding-bottom: 1px;
  pointer-events: none;
}

.sseed-accent-underline {
  display: block;
  width: 100%;
  min-width: 72px;
  max-width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00 0%, #faa719 48%, rgba(250, 167, 25, 0.42) 100%);
  clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(255, 138, 0, 0.28);
}

.sseed-skew-block {
  display: block;
  flex: 0 0 auto;
  transform: skewX(-45deg);
  transform-origin: bottom center;
  border-radius: 1px;
}

.sseed-subtitle-skew .sseed-skew-block:nth-child(1) {
  width: 14px;
  height: 25px;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 0, 0.88) 0%,
    rgba(250, 167, 25, 0.58) 58%,
    rgba(250, 167, 25, 0.12) 100%
  );
  box-shadow: 0 1px 6px rgba(255, 138, 0, 0.18);
}

.sseed-subtitle-skew .sseed-skew-block:nth-child(2) {
  width: 14px;
  height: 25px;
  background: linear-gradient(
    90deg,
    rgba(250, 167, 25, 0.5) 0%,
    rgba(250, 167, 25, 0.16) 65%,
    rgba(250, 167, 25, 0) 100%
  );
}

.sseed-subtitle-wrap + .it-section-title,
.sseed-subtitle-wrap + .it-section-title.text-white {
  margin-top: 0;
}

/* Sky / cyan accent — dark sections (basic training, client review) */
.sseed-subtitle-wrap--sky .sseed-subtitle-main .it-subtitle {
  color: var(--it-theme-2, #00c8ff);
}

.sseed-subtitle-wrap--sky .sseed-accent-underline {
  background: linear-gradient(90deg, #007bff 0%, #00c8ff 50%, rgba(0, 200, 255, 0.35) 100%);
  box-shadow: 0 2px 8px rgba(0, 200, 255, 0.28);
}

.sseed-subtitle-wrap--sky .sseed-subtitle-skew .sseed-skew-block:nth-child(1) {
  background: linear-gradient(
    90deg,
    rgba(0, 123, 255, 0.9) 0%,
    rgba(0, 200, 255, 0.55) 58%,
    rgba(0, 200, 255, 0.12) 100%
  );
  box-shadow: 0 1px 6px rgba(0, 200, 255, 0.2);
}

.sseed-subtitle-wrap--sky .sseed-subtitle-skew .sseed-skew-block:nth-child(2) {
  background: linear-gradient(
    90deg,
    rgba(0, 200, 255, 0.48) 0%,
    rgba(0, 200, 255, 0.14) 65%,
    rgba(0, 200, 255, 0) 100%
  );
}

@media (max-width: 575px) {
  .sseed-accent-underline {
    min-width: 60px;
    max-width: 96px;
    height: 3px;
  }

  .sseed-subtitle-skew .sseed-skew-block:nth-child(1) {
    width: 12px;
    height: 15px;
  }

  .sseed-subtitle-skew .sseed-skew-block:nth-child(2) {
    width: 9px;
    height: 12px;
  }
}

/* FAQ — accordion answer text */
.it-faq-area .it-custom-accordion .accordion-body {
  text-align: justify;
}
