/*-- -------------------------- -->
<---         Philosophy          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #philosophy {
    padding: var(--sectionPadding);
    background-color: var(--primaryDark);
    scroll-margin-top: 6rem;
  }
  #philosophy .cs-container {
    width: 100%;
    max-width: 72rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #philosophy .cs-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin: 0;
  }
  #philosophy .cs-title em {
    color: var(--secondary);
  }
  #philosophy .cs-text-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  #philosophy .cs-text {
    max-width: none;
    color: rgba(255, 255, 255, 0.78);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #philosophy .cs-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  #philosophy .cs-title {
    width: 42%;
    flex: none;
  }
  #philosophy .cs-text-group {
    flex: 1;
  }
}
