/*-- -------------------------- -->
<---        What's Included      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #whats-included {
    padding: var(--sectionPadding);
    background-color: #fcfbf2;
    scroll-margin-top: 6rem;
  }
  #whats-included .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #whats-included .cs-content {
    width: 100%;
    max-width: 56rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #whats-included .cs-title {
    font-family: 'Sentient', serif;
    font-size: 48.496px;
    font-weight: 300;
    font-style: normal;
    line-height: 58.0012px;
    letter-spacing: -1.45488px;
    text-align: center;
    color: #1e1e1e;
  }
  #whats-included .cs-title em {
    font-style: italic;
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #bdcc85;
    text-underline-offset: 0.2em;
  }
  #whats-included .cs-card-group {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #whats-included .cs-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
  }
  #whats-included .cs-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  #whats-included .cs-item-h3 {
    font-family: var(--headingFont);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3em;
    margin: 0;
    color: var(--navy);
  }
  #whats-included .cs-item-text {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.6em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #whats-included .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* Desktop - 64rem */
@media only screen and (min-width: 64rem) {
  #whats-included .cs-card-group {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
