/*-- -------------------------- -->
<---       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: #cc7c46;
    position: relative;
  }
  #getting-started-4187 .cs-topper:before {
    content: "";
    width: 3rem;
    height: 2px;
    background-color: #cc7c46;
    position: absolute;
    left: 0;
    top: 0;
  }
  #getting-started-4187 .cs-title {
    font-weight: 400;
    margin: 0;
    color: #223a4d;
  }
  /* Last word of the heading -- same two-layer highlighter mark used
     elsewhere on the site, in Peach Citrus */
  #getting-started-4187 .cs-title span {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 0.2rem;
    white-space: nowrap;
  }
  #getting-started-4187 .cs-title span:before {
    content: "";
    position: absolute;
    left: -0.4rem;
    right: -0.2rem;
    bottom: -0.05rem;
    height: 25%;
    background: var(--secondary);
    opacity: 0.85;
    z-index: -2;
    border-radius: 4px 8px 4px 12px;
    clip-path: ellipse(60% 100% at 50% 0%);
    transform: rotate(-1deg);
  }
  #getting-started-4187 .cs-title span:after {
    content: "";
    position: absolute;
    left: -0.1rem;
    right: -0.5rem;
    bottom: 0.05rem;
    height: 38%;
    background: var(--secondary);
    opacity: 0.5;
    z-index: -1;
    border-radius: 6px 12px 4px 8px;
    clip-path: ellipse(55% 100% at 48% 0%);
    transform: rotate(0.5deg);
  }
  #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: #cc7c46;
    display: block;
  }
  #getting-started-4187 .cs-step-h3 {
    font-family: 'Self Modern', serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.3em;
    margin: 0 0 0.75rem;
    color: #223a4d;
  }
  #getting-started-4187 .cs-step-text {
    font-family: 'Gotham', sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: #223a4d;
  }
}

/* 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);
  }
}
