.section-approach__container {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  overflow: hidden;
  border-bottom: 1px solid #c19a6b;
  margin-top: 5.2rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 992px) {
  .section-approach__container {
    margin-top: 2.6rem;
  }
}
@media (max-width: 992px) {
  .section-approach__container {
    padding-bottom: 2.25rem;
  }
}
@media (max-width: 992px) {
  .section-approach__container {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.section-approach__line {
  height: 2.75rem;
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .section-approach__line {
    display: none;
  }
}
.section-approach__line::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  width: 1px;
  height: 100vh;
  background-color: #c19a6b;
}
@media (max-width: 992px) {
  .section-approach__arrow {
    height: unset;
    width: fit-content;
  }
  .section-approach__arrow svg {
    transform: rotate(90deg);
  }
  .section-approach__arrow:nth-child(1) {
    display: block;
  }
}
.section-approach__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.section-approach__item-title {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 2.75rem;
}
@media (max-width: 992px) {
  .section-approach__item-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.section-approach__item-description {
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (min-width: 992px) {
  .section-approach__item:last-child {
    padding-right: 3rem;
  }
}
