.tree {
  max-width: 1920px;
  padding: 0 32px;
  margin: 80px auto 0;
  border-radius: 24px;
}

.tree-bg {
  margin: 120px auto 0;
  padding: 120px 32px 80px;
  background: linear-gradient(180deg, #f7f7f7 0%, #fff 26%);
}

.tree-wrap {
  max-width: 1304px;
  margin: 0 auto;
}

.indicators {
  display: flex;
  gap: 32px;
  margin: 0 0 80px;
  justify-content: space-between;
}

.tree-header {
  margin-bottom: 48px;
}

.indicator {
  border-top: 1px solid #E9E9EA;
  padding-top: 16px;
  max-width: 330px;
}

.indicator-box {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: #1582E7;
}

.indic-value {
  font-size: 100px;
  font-family: Semi;
}

.indic-unit {
  font-size: 42px;
  font-family: Semi;
  line-height: 2.12;
}

.indic-title {
  margin-bottom: 16px;
  font-family: Semi;
  font-size: 20px;
  line-height: 1.7;
}

.indic-desc {
  font-family: Medium;
  color: #7A7C83;
  line-height: 1.5;
}

.tree-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 92px;
  border: 1px solid #F4F4F5;
  border-radius: 16px;
  box-shadow: 0 13px 29px 0 rgba(0, 0, 0, 0.02), 0 52px 52px 0 rgba(0, 0, 0, 0.02), 0 117px 70px 0 rgba(0, 0, 0, 0.01), 0 208px 83px 0 rgba(0, 0, 0, 0), 0 325px 91px 0 rgba(0, 0, 0, 0);
}

.tree-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #F4F4F5;
  border-radius: 12px;
}
.tree-img img {
  width: 100px;
  height: 112px;
}

.tree-banner-box {
  display: flex;
  align-items: center;
  gap: 36px;
}
.tree-banner-box img {
  max-width: 240px;
}

.tree-text {
  border-left: 1px solid #212530;
  font-size: 20px;
  font-family: Medium;
  line-height: 1.7;
  max-width: 280px;
  padding-left: 36px;
}

@media (max-width: 1200px) {
  .tree {
    margin: 0;
    padding: 0 16px;
    border-radius: 0;
  }
  .tree-bg {
    margin: 48px 0 0;
    padding: 48px 16px;
  }
}
@media (max-width: 768px) {
  .tree-banner {
    padding: 16px;
  }
  .indicators {
    gap: 0;
    flex-direction: column;
    margin: 0 0 32px;
  }
  .indicator {
    padding: 20px 0;
  }
  .indicator:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .indic-value {
    font-size: 54px;
    line-height: 1;
  }
  .indic-unit {
    font-size: 18px;
    font-family: Medium;
    line-height: 1.7;
  }
  .indic-title {
    margin: 4px 0 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .indic-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  .tree-banner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px 16px;
    border: 1px solid #E9E9EA;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.03), 0 10px 10px 0 rgba(0, 0, 0, 0.03), 0 21px 13px 0 rgba(0, 0, 0, 0.02), 0 38px 15px 0 rgba(0, 0, 0, 0), 0 60px 17px 0 rgba(0, 0, 0, 0);
  }
  .tree-banner-box {
    flex-direction: column;
    gap: 12px;
  }
  .tree-banner-box img {
    width: 150px;
    height: 50px;
  }
  .tree-text {
    border: none;
    text-align: center;
    font-size: 14px;
    color: #7A7C83;
    line-height: 1.4;
    padding: unset;
    max-width: 280px;
    font-family: Regular;
  }
  .tree-img {
    width: 100%;
    max-width: 390px;
    border-radius: 8px;
  }
  .tree-header {
    margin-bottom: 32px;
  }
}