@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap');


.about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px 20px 20px;  /* PC는 기본 패딩 */
	  padding-bottom: 40px;
}

.about-top-img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}

.quote-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 30px 20px;
}

.quote-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.quote-text {
  white-space: nowrap;
  font-size: 20px;
  font-family: 'Noto Serif KR', serif;
  font-weight: bold;
  line-height: 1.1;  /* ✅ 줄 간격 조절 */
}

.lp-highlight {
  color: #d6a84d;
  font-size: 28px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); /* 살짝 부드러운 그림자 */
}

.about-body {
  padding: 20px 40px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.about-signature {
  text-align: right;
  font-weight: bold;
  margin-top: 30px;
}

/* ✅ 모바일 스타일 */
@media screen and (max-width: 768px) {
.quote-line-wrapper {
  flex-direction: row;          /* ✅ 가로 정렬로 다시 변경 */
  align-items: center;          /* ✅ 세로 정렬 중앙 */
  gap: 10px;
  justify-content: center;      /* ✅ 가운데 정렬 유지 */
}

.quote-line {
  flex: 1;
  height: 1.5px;                /* ✅ 더 얇은 느낌을 주기 */
  background-color: #ccc;
  opacity: 0.8;                 /* ✅ 더 은은하게 */
  max-width: 80px;              /* ✅ 모바일에서 너무 길지 않게 제한 */
}

  .quote-text {
    font-size: 16px;
    text-align: center;
    white-space: normal;
	line-height: 1.2;  /* ✅ 줄 간격 조절 */
	font-family: 'Noto Serif KR', serif !important;
    font-weight: 700 !important;
	text-shadow: 0.4px 0.4px 0.5px rgba(0, 0, 0, 0.25);  /* ✅ 두께감 보정용 */
  }

  .quote-text .lp-highlight {
    font-size: 24px;
	color: #d6a84d;    /* ✅ 더 밝은 골드 느낌 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);  /* ✅ 그림자는 살짝만 */
	font-weight: 800;  /* ✅ 더 두껍게 추가 */
  }

  .about-body {
    font-size: 13px;
    line-height: 1.7;
	  padding: 20px 25px 0;
  }

  .about-wrapper {
    margin-top: -30px;
    padding-top: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .about-wrapper img {
    border-radius: 0 !important;
  }
	
  br.mobile-break {
    display: block;
  }
	
}
