/*
 * Heading-hierarchy normalization on service pages (T08 #7, 2026-07-02).
 * Tags were changed for document-outline semantics only; these rules pin
 * the exact visual style the old tags had, so nothing moves on screen.
 * Values mirror public/index.css (agency build artifact — do not rebuild).
 */

/* Hero subtitle: was a bare <h4> (base h4 styles only). */
.page-title .page-desc {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: normal;
  margin: 1rem 0;
}

/* FAQ question: was <h4> styled by `.faq-item h4`; now <h3> for a clean
   H2 > H3 outline (and to mirror the FAQPage schema entities). */
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: normal;
  line-height: 1.5;
}

/* Explore More card title: was <h3 class="title sm">. */
.loop-related .desc p.title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.75px;
  margin: 1rem 0 0.5rem;
}

/* Service highlight quote: was a bare <h3> inside .tab-content .image.
   blockquote needs its browser default margin reset on top of the h3 look. */
section.service-product .tab-content .image blockquote.service-quote {
  margin: 1rem 0;
  padding: 0;
  text-align: center;
  line-height: 1.25;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.75px;
}
section.service-product .tab-content .image blockquote.service-quote div.icon {
  margin: 1.5rem 0;
}
section.service-product .tab-content .image blockquote.service-quote div.icon.icon-start {
  margin-top: 0;
  text-align: left;
}
section.service-product .tab-content .image blockquote.service-quote div.icon.icon-end {
  text-align: right;
}
section.service-product .tab-content .image blockquote.service-quote div.icon img {
  display: inline-block;
}

@media (max-width: 992px) {
  .page-title .page-desc {
    font-size: 1rem;
  }
  .loop-related .desc p.title {
    font-size: 1.125rem;
    letter-spacing: -0.5px;
  }
  section.service-product .tab-content .image blockquote.service-quote {
    font-size: 1.125rem;
    letter-spacing: -0.5px;
  }
}
