@charset "UTF-8";
/* CSS Document */

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1684 {
    padding: var(--sectionPadding);
    background: linear-gradient(to bottom, #eef1f5, #dfe3e8);
  }

  #services-1684 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }

  #services-1684 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Make intro typography consistent with other sections */
  #services-1684 .cs-topper {
    font-family: var(--headerFont);
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.8rem;
    display: block;
  }

  #services-1684 .cs-title {
    font-family: var(--headerFont);
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 80rem;
    margin: 0 0 1.8rem 0;
    color: var(--headerColor);
  }

  #services-1684 .cs-text {
    font-family: var(--bodyFont);
    line-height: 1.6em;
    max-width: 80rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0;
    color: var(--bodyTextColor);
  }

  #services-1684 .cs-card-group {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: row;
    gap: 1.75rem;
  }

  #services-1684 .cs-item {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(16, 42, 67, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  }

  #services-1684 .cs-item:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
  }

  #services-1684 .cs-item:hover .cs-h3,
  #services-1684 .cs-item:hover .cs-link {
    color: var(--secondary);
  }

  #services-1684 .cs-item:hover .cs-arrow {
    transform: translateX(0.25rem);
  }

  #services-1684 .cs-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }

  #services-1684 .cs-h3 {
    font-family: var(--headerFont);
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3em;
    text-align: inherit;
    margin: 0 0 1rem;
    color: var(--headerColor);
    transition: color 0.3s;
  }

  #services-1684 .cs-item-text {
    font-family: var(--bodyFont);
    font-size: var(--bodyFontSize);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6em;
    margin: 0 0 1.5rem 0;
    padding: 0;
    color: var(--bodyTextColor);
  }

  #services-1684 .cs-link {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    margin-top: auto;
    color: var(--secondary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }

  #services-1684 .cs-link-text {
    width: fit-content;
  }

  #services-1684 .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1684 .cs-container {
    max-width: 80rem;
  }

  #services-1684 .cs-card-group {
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  #services-1684 .cs-item {
    padding: 0;
    padding-left: clamp(1.25rem, 3vw, 2rem);
    border: none;
    border-left: 1px solid rgba(16, 42, 67, 0.2);
    grid-column: span 4;
  }

  #services-1684 .cs-item:hover {
    border-left-color: var(--secondary);
  }
}