.investment-approach {
  padding: 100px 0;
}
@media (width <= 1023px) {
  .investment-approach {
    padding: 80px 0;
  }
}
@media (width <= 767px) {
  .investment-approach {
    padding: 60px 0;
  }
}
.investment-approach__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (width <= 1023px) {
  .investment-approach__container {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
}
.investment-approach .label-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(60, 90, 120, 0.2);
  color: #3c5a78;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
}
@media (width <= 1023px) {
  .investment-approach .label-button {
    margin: 0 auto 12px;
  }
}
.investment-approach .label-button svg {
  width: 14px;
  height: 14px;
}
.investment-approach .title {
  margin: 0 0 24px;
}
@media (width <= 1023px) {
  .investment-approach .title {
    text-align: center;
  }
}
.investment-approach .description {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  color: var(--dark-grey-stroke-secondary-text, #303A43);
}
@media (width <= 1023px) {
  .investment-approach .description {
    text-align: center;
  }
}
@media (width <= 500px) {
  .investment-approach .description {
    font-size: 16px;
    line-height: 24px;
  }
}
.investment-approach__column {
  position: sticky;
  top: 0;
  width: 42%;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 100px;
}
@media (width <= 1023px) {
  .investment-approach__column {
    position: static;
    width: 100%;
    padding-top: 0;
  }
}
.investment-approach__column .button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}
@media (width <= 1023px) {
  .investment-approach__column .button {
    margin: 32px auto 0;
  }
}
.investment-approach__cards {
  width: 52%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (width <= 1023px) {
  .investment-approach__cards {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.investment-approach .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 48px;
  border-radius: 12px;
  border: 1px solid var(--grey-stroke, #E8EBEF);
  background: var(--default-primary-1, #FEFEFE);
}
@media (width <= 1023px) {
  .investment-approach .card {
    padding: 32px;
    width: calc(50% - 10px);
  }
}
@media (width <= 767px) {
  .investment-approach .card {
    padding: 24px;
    width: 100%;
  }
}
.investment-approach .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}
@media (width <= 1023px) {
  .investment-approach .card-icon {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
  }
}
.investment-approach .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.investment-approach .card-icon svg {
  width: 48px;
  height: 48px;
}
.investment-approach .card-title {
  margin: 0 0 20px;
  color: var(--default-primary-2, #030D16);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
}
@media (width <= 767px) {
  .investment-approach .card-title {
    margin: 0 0 12px;
    font-size: 18px;
  }
}
.investment-approach .card-list {
  margin: 0 0 40px;
  padding: 0;
  width: 100%;
  list-style: none;
}
.investment-approach .card-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-grey-stroke-secondary-text, #303A43);
}
@media (width <= 767px) {
  .investment-approach .card-item {
    gap: 8px;
    margin-bottom: 8px;
  }
}
.investment-approach .card-item:last-child {
  margin-bottom: 0;
}
.investment-approach .card-item svg {
  width: 14px;
  min-width: 14px;
  height: 14px;
}
.investment-approach .card-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.investment-approach .card-quote {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--blue-accent, #3C5A78);
}