.approach-section {
  width: 100%;
  padding: 120px 20px;
}

.approach-section__grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.approach-section__left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 340px;
  min-width: 0;
}

.approach-card--one {
  border-radius: 20px;
  border: 1px solid #a0ae76;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  flex: 1;
}

.approach-card__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.approach-card__tag {
  background: #4d5c2a;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-block;
}

.approach-card__link {
  color: #1f270f;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 24px;
  display: inline-block;
  transition: color 0.2s ease;
}

.approach-card__link:hover {
  color: #566c31;
}

.approach-card--two {
  padding: 16px 20px;
  border-radius: 20px;
  background: #d6eb12;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.approach-card--two:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.approach-card__two-text {
  color: #1f270f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.approach-card__two-arrow {
  color: #1f270f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.25s ease;
}

.approach-card--two:hover .approach-card__two-arrow {
  transform: translate(2px, -2px);
}

.approach-card--three {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  border-radius: 20px;
  padding: 36px;
  background-color: #566c31;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 440px;
}

.approach-card__three-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.approach-card__three-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-card__three-eyebrow {
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.approach-card__three-para {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  margin: 0;
  max-width: 540px;
}

.approach-card__three-bottom-text {
  color: #d6eb12;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .approach-section {
    padding: 40px 20px;
  }

  .approach-section__left-col {
    flex: 0 0 300px;
  }

  .approach-card__two-text {
    font-size: 22px;
  }

  .approach-card__three-bottom-text {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .approach-card__tags {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 0 !important;
  }
  .approach-section {
    padding: 40px 20px;
  }

  .approach-section__grid {
    flex-direction: column;
  }

  .approach-section__left-col {
    flex: none;
    width: 100%;
  }

  .approach-card--three {
    min-height: 0;
    padding: 28px;
  }

  .approach-card__three-bottom-text {
    font-size: 26px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .approach-section {
    padding: 40px 20px 0 20px;
  }

  .approach-card--one {
    padding: 16px;
    min-height: 0;
  }

  .approach-card__tag {
    font-size: 14px;
    padding: 6px 14px;
  }

  .approach-card--two {
    padding: 16px;
  }

  .approach-card__two-text {
    font-size: 20px;
  }

  .approach-card--three {
    padding: 24px;
    min-height: 0;
  }

  .approach-card__three-eyebrow {
    font-size: 14px;
  }

  .approach-card__three-para {
    font-size: 14px;
    line-height: 22px;
  }

  .approach-card__three-bottom-text {
    font-size: 22px;
  }
}
