/* =============================================================================
   FD Section Header
   =============================================================================
   The two-line heading pattern used between sections on landing pages:

     [Section Title]
     [Italic framing sentence]

   Usage:
     Wrap the two text elements in a Salient row with custom CSS class
     "fd-section-header". Salient handles typography and animation on the
     individual elements; this CSS handles the relationship between them.

   Variants:
     fd-section-header--minimal — no accent line above
     fd-section-header--centred — centre-aligned heading and framing
   ============================================================================= */


.fd-section-header {
  margin-top: 3rem;
  margin-bottom: 1.5rem;

  max-width: 38rem;

  border-top: 1px solid var(--fd-line-warm);
  padding-top: 1.5rem;
}

.fd-section-header h1,
.fd-section-header h2,
.fd-section-header h3,
.fd-section-header h4 {
  color: var(--fd-text);
  margin: 0 0 0.5rem 0;
}

.fd-section-header p,
.fd-section-header h2 + p,
.fd-section-header h3 + p {
  font-style: italic;
  color: var(--fd-text-muted);
  opacity: 0.92;
  margin: 0;
  line-height: 1.5;
}


/* -----------------------------------------------------------------------------
   Tablet and up
   ----------------------------------------------------------------------------- */

@media (min-width: 600px) {
  .fd-section-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
}


/* -----------------------------------------------------------------------------
   Desktop
   ----------------------------------------------------------------------------- */

@media (min-width: 900px) {
  .fd-section-header {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}


/* -----------------------------------------------------------------------------
   Variant: minimal (no accent line above)
   ----------------------------------------------------------------------------- */

.fd-section-header--minimal {
  border-top: none;
  padding-top: 0;
}


/* -----------------------------------------------------------------------------
   Variant: centred (centre-aligned heading and framing)
   ----------------------------------------------------------------------------- */

.fd-section-header--centred {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.fd-section-header--centred h1,
.fd-section-header--centred h2,
.fd-section-header--centred h3,
.fd-section-header--centred h4,
.fd-section-header--centred p {
  text-align: center;
}
