/* Approach Section */
.approach {
  position: relative;
  padding: 40px 110px;
  background-color: var(--color-bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Approach Container */
.approach-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Approach Heading */
.approach-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}
.approach-heading-title span {
  display: inline-block;
}

/* .approach-heading-subtitle {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  line-height: 120%;
  color: var(--color-body);
} */

.approach-heading-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h2-desktop);
  line-height: 120%;
  color: var(--color-text-primary-100);
}

/* Approach Cards Container */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Approach Card */
.approach-card {
  background-color: var(--color-bg-gray-light);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Approach Card Icon */
.approach-card-icon {
  width: 64px;
  height: 64px;
  /* display: flex;
  align-items: start;
  justify-content: start; */
}

.approach-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Approach Card Title */
.approach-card-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h5-desktop);
  line-height: 120%;
  color: var(--color-text-primary-100);
  text-align: start;
}

/* Approach Card Description */
.approach-card-description {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-b1-desktop);
  line-height: 150%;
  color: var(--color-text-secondary-100);
  text-align: start;
  margin-top: 16px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .approach {
    padding: 40px;
  }

  .approach-container {
    gap: 60px;
  }

  .approach-heading-title {
    font-size: 40px;
  }

  .approach-cards {
    gap: 24px;
  }

  .approach-card {
    padding: 40px 24px;
  }
}

/* Mobile Styles */
@media (max-width: 830px) {
  .approach {
    padding: 40px 24px;
  }

  .approach-container {
    gap: 48px;
  }

  .approach-heading-subtitle {
    font-size: 18px;
  }

  .approach-heading-title {
    font-size: 32px;
  }

  .approach-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-card {
    padding: 32px;
  }
  .approach-card-title {
    font-size: 20px;
  }

  .approach-card-description {
    font-size: 16px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .approach {
    padding: 24px;
  }

  .approach-container {
    gap: 32px;
  }
  .approach-cards {
    gap: 12px;
  }

  /* .approach-heading-subtitle {
    font-size: 16px;
  } */

  .approach-heading-title {
    font-size: var(--font-size-h2-mobile);
  }
  .approach-card-description {
    font-size: 12px;
    margin-top: 4px;
  }

  .approach-card {
    padding: 20px;
    gap: 20px;
  }
}
