/* ===========================
   공통 Quote 섹션 (index.html, main.html 공유)
   원본 Figma con-4 디자인 값 그대로
   =========================== */

.quote-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 900px;
  padding: 229px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.quote-section .quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.quote-section .quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 504px;
  max-width: 100%;
  padding: 0;
  z-index: 1;
  text-align: center;
}

.quote-section .quote-title {
  margin: 0;
  font-size: clamp(50px, 9vw, 160px);
  font-weight: 700;
  line-height: 130%;
  font-family: var(--font-the-nautigal);
  color: var(--color-white);
  text-align: center;
}

.quote-section .quote-body {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--font-ko-main);
  color: var(--color-white);
  text-align: center;
}

/* ≤ 1200px */
@media screen and (max-width: 1200px) {
  .quote-section {
    min-height: 700px;
    padding: 149px 20px;
  }
}

/* ≤ 825px */
@media screen and (max-width: 825px) {
  .quote-section {
    min-height: 600px;
    padding: 120px 20px;
  }
}

/* ≤ 450px */
@media screen and (max-width: 450px) {
  .quote-section {
    min-height: 500px;
    padding: 97px 16px;
  }
}
