/*-- -------------------------- -->
<---       Getting Started      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #getting-started-4187 {
    padding: var(--sectionPadding);
    background-color: #fff;
  }
  #getting-started-4187 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #getting-started-4187 .cs-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /* Short accent rule above the eyebrow, eyebrow in the terracotta accent --
     same pattern as About/Services */
  #getting-started-4187 .cs-topper {
    margin: 0 0 1rem;
    padding-top: 1rem;
    color: var(--accentText);
    position: relative;
  }
  #getting-started-4187 .cs-topper:before {
    content: "";
    width: 3rem;
    height: 2px;
    background-color: var(--accentText);
    position: absolute;
    left: 0;
    top: 0;
  }
  #getting-started-4187 .cs-title {
    font-weight: 400;
    margin: 0;
    color: var(--navy);
  }
  #getting-started-4187 .cs-step-group {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* Divider between steps -- same treatment as the About logos: a line
     above each step except the first on mobile (stacked), switching to
     a vertical line to the left once they sit in a row. */
  #getting-started-4187 .cs-step {
    text-align: left;
    padding-top: 1.5rem;
  }
  #getting-started-4187 .cs-step:first-child {
    padding-top: 0;
  }
  #getting-started-4187 .cs-step:not(:first-child) {
    border-top: 1px solid rgba(104, 115, 107, 0.25);
  }
  #getting-started-4187 .cs-step-number {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1em;
    margin-bottom: 0.5rem;
    color: var(--accentText);
    display: block;
  }
  #getting-started-4187 .cs-step-h3 {
    font-family: var(--headingFont);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.3em;
    margin: 0 0 0.75rem;
    color: var(--navy);
  }
  #getting-started-4187 .cs-step-text {
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--navy);
  }
}

/* Tablet - 768px: 3 steps across, so the divider switches from a line
   above each step to a vertical line to the left instead */
@media only screen and (min-width: 48rem) {
  #getting-started-4187 .cs-step-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  #getting-started-4187 .cs-step {
    padding-top: 0;
    padding-left: 2rem;
  }
  #getting-started-4187 .cs-step:first-child {
    padding-left: 0;
  }
  #getting-started-4187 .cs-step:not(:first-child) {
    border-top: none;
    border-left: 1px solid rgba(104, 115, 107, 0.25);
  }
}
