.philosophy {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-width: var(--min-width);
  background: url("/home_assets/img/rnd/philo-pc.png") no-repeat center/cover var(--background-color);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(1.6rem, 3vw, 4rem);
}

.philosophy-container {
  width: 100%;
  height: 100%;
}

.philosophy-title br {
  display: none;
}

.philosophy-content {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 14rem;
}

.philosophy-txt {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding-top: 5%;
}

.philo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-style: normal;

  line-height: 2.4rem;
  text-align: center;
  color: var(--white);
}

.philo br {
  display: none;
}

.philo-txt1 {
  font-weight: 400;
  font-size: clamp(2.2rem, 2vw, 4rem);
}

.philo-txt2,
.philo-txt3 {
  font-weight: 300;
  font-size: clamp(1.4rem, 1vw, 2.4rem);
  line-height: 1.3;
}

.gradient-border {
  position: relative;
  width: 0.1rem;
  height: 21rem;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.gradient-border::after {
  content: "";
  position: absolute;
  width: 0.292rem;
  height: 0.292rem;
  left: -0.05rem;
  bottom: -1.1rem;

  background: #f1e9de;
  box-shadow: 0px 0px 12.2059px #c19d6b, 0px 0px 6.97482px #c19d6b,
    0px 0px 4.06865px #c19d6b, 0px 0px 2.03432px #c19d6b,
    0px 0px 0.581235px #c19d6b, 0px 0px 0.290618px #c19d6b;
  transform: rotate(36.55deg);
}

@media (max-width: 768px) {
  .philosophy {
    background: url("/home_assets/img/rnd/philo-mobile.png") no-repeat center/cover var(--background-color);
  }

  .philosophy-title br {
    display: block;
  }

  .philosophy-content {
    padding-top: 0;
    align-items: normal;
    justify-content: normal;
  }

  .philo {
    width: 100%;
    line-height: 145%;
  }

  .philo br {
    display: block;
  }

  .philo-txt2 {
    width: 345px;
  }

  .philosophy-txt {
    position: absolute;
    left: 50%;
    top: 14rem;
    transform: translateX(-50%);
    padding: 0;
    gap: 3.7rem;
  }

  .gradient-border {
    height: 12.9rem;
    margin-top: 8rem;
  }
}