.perspective-thought {
  position: relative;
  padding: 50px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--deep-green);
  border-radius: 10px;
}

.perspective-thought__title {
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: var(--deep-green);
}

.perspective-thought__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 190%;
  color: #000;
  letter-spacing: 0.016px;
}

.perspective-thought__text-wrapper {
  display: grid;
  row-gap: 16px;
  padding-bottom: 76px;
}

.perspective-thought__figure {
  min-width: 146px;
  box-shadow: 0 4px 24px 0 #dfdfdf;
}

.perspective-thought__figure-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.perspective-thought__figure-caption {
  font-size: 12px;
  font-weight: 500;
  line-height: 190%;
  color: var(--gray);
  letter-spacing: 0.012px;
}

.perspective-thought__bg {
  position: absolute;
  right: -1px;
  bottom: 0;
  z-index: -10;
  opacity: 0.7;
}

@media (width <= 970px) {
  .perspective-thought {
    padding-bottom: 180px;
  }

  .perspective-thought__text {
    font-size: 14px;
    line-height: 170%;
  }

  .perspective-thought__figure-wrapper {
    width: 60%;
  }
}

@media (width < 768px) {
  .perspective-thought {
    padding: 24px 24px 50vw;
    margin-top: 42px;
  }

  .perspective-thought__body {
    gap: 24px;
  }

  .perspective-thought__title {
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 170%;
  }

  .perspective-thought__text {
    font-size: 13px;
    line-height: 150%;
  }

  .perspective-thought__text-wrapper {
    padding-bottom: 32px;
  }

  .perspective-thought__figure {
    width: 38vw;
    margin-inline: auto;
  }

  .perspective-thought__figure-wrapper {
    gap: 6px;
    width: 100%;
    margin-inline: auto;
  }

  .perspective-thought__figure-caption {
    font-size: 12px;
    font-weight: 300;
    line-height: 140%;
  }
}
