/*-- -------------------------- -->
<---          Offerings          -->
<--- -------------------------- -*/

/* Full-bleed close-up tree photo with a dark overlay, centred title,
   and a row of cream rounded cards (icon / two-line title / text)
   sitting on top. Cards stack on mobile, become a 4-column row on
   desktop. */
@media only screen and (min-width: 0rem) {
  #offerings {
    width: 100%;
    padding: 4.5rem 1.5rem;
    background-image: linear-gradient(rgba(20, 26, 22, 0.55), rgba(20, 26, 22, 0.55)), url("../images/treebackground.jpg");
    background-size: cover;
    background-position: center;
  }
  #offerings .cs-container {
    width: 100%;
    max-width: 75rem;
    margin: auto;
  }
  #offerings .cs-title {
    font-family: var(--headingFont);
    font-weight: 400;
    font-size: 2.5rem;
    text-align: center;
    color: var(--cream);
    margin: 0 0 3rem;
  }
  #offerings .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #offerings .cs-item {
    width: 100%;
    background-color: var(--cream);
    border-radius: 1.25rem;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #offerings .cs-item-icon {
    width: 2rem;
    height: 2rem;
    color: var(--navy);
    margin: 0 0 2rem;
  }
  #offerings .cs-item-title {
    font-family: var(--headingFont);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.25em;
    color: var(--navy);
    margin: 0 0 1.5rem;
  }
  #offerings .cs-item-text {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #offerings .cs-offerings-cta {
    margin: 2.5rem auto 0;
    display: table;
  }
}

/* Desktop - 64rem: 4-column row */
@media only screen and (min-width: 64rem) {
  #offerings {
    padding: 6.5rem 2.5rem;
  }
  #offerings .cs-title {
    font-size: 3rem;
    margin: 0 0 4rem;
  }
  #offerings .cs-card-group {
    flex-direction: row;
    align-items: stretch;
  }
  #offerings .cs-item {
    flex: 1 1 0;
  }
  #offerings .cs-offerings-cta {
    margin-top: 3.5rem;
  }
}
