/* Services Section */
.services-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.services-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.services-section .services-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.services-section .service-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.services-section .service-card .content {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.services-section .service-card .content .description {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--smaller-gap);
}

.services-section .service-card .content-image {
  background-color: #ffffff;
  height: 44px;
  width: 44px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-section .service-card .content h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.services-section .service-card .content p {
  font-size: var(--services-font-size);
  font-weight: 300;
  line-height: var(--services-line-height);
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .services-section .container {
    gap: 60px;
  }

  .services-section .services-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .services-section .services-panel > * {
    flex: 1 1 calc(33.3% - 36px);
  }

  .services-section .service-card {
    background-color: transparent;
    padding: 0;
  }

  .services-section .service-card .content-image {
    height: 30px;
    width: 30px;
  }
}
