@charset "UTF-8";

.link-unstyled {
  color: inherit;
  text-decoration: none;
}

.link-unstyled:hover {
  color: inherit;
  text-decoration: none;
}

.fw-bold-extra {
  font-weight: 900 !important
}

.sub_top_title {
  font-size: 3rem;
}

.word-keep-all {
  word-break: keep-all;
}

.row p, .row ul li, .text-start {
  font-size: 1.25rem;
}


/* ===== 메인 비주얼 ===== */
.main-visual {
  min-height: 100svh;
  /* 모바일 주소창 대응 */
  background-color: var(--visual-bg, #37BDB8);
  position: relative;
}

:root[data-bs-theme="dark"] .main-visual,
:root[data-bs-theme="dark"] .connect-section,
:root[data-bs-theme="dark"] .refresh-section,
:root[data-bs-theme="dark"] .site-footer {
  background-color: unset;
}

/* 이미지가 있을 경우 중앙 정렬 */
.main-visual .row {
  min-height: 100svh;
}

/* 필요 시 이미지 크기 조절 */
.visual-image {
  max-height: 80vh;
}



/* 중앙 카드 */
.center-card {
  width: 540px;
  /* aspect-ratio: 3 / 4;
  background: #fff; */
  border-radius: 28px;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); */

  display: flex;
  align-items: center;
  justify-content: center;
}

.center-card.wx_resize {
  width: 680px;
  margin-top: 40px;
}

/* 중앙 카드 이미지 형식 */
.center-card-img {
  width: 420px;
  aspect-ratio: 3 / 4;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2)
}

.center-card-landscape {
  width: 720px;
  /* 가로형이라 폭을 넉넉히 */
  /* aspect-ratio: 16 / 9;
  background: #fff; */
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {

  .center-card,
  .center-card-landscape {
    width: 90%;
    border-radius: 20px;
  }
}

.center-card img,
.center-card-landscape img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* 섹션명 (Discover) */
.section-title {
  font-size: 2rem;
  letter-spacing: -0.2px;
}

/* 칼럼명 */
.column-title {
  font-size: 1.4rem;
  opacity: 0.9;
}

/* 가운데 라인 */
.title-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 12px auto;
}


@media (max-width: 768px) {

  .sub_top_title {
    font-size: 2rem;
    word-break: keep-all;
  }

  .center-card {}

  .center-card.wx_resize {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .title-line {
    width: 26px;
  }

  .column-title {
    font-size: 1.2rem;
  }

}


/* 카드 영역 */
.center-card {
  position: relative;
  overflow: hidden;
}

/* 패럴렉스 이미지 */
.parallax-img {
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: transform 0.1s linear;
  /* 미세 보정 */
  will-change: transform;
}

/* ========== Quote Section ========== */
.quote-section {
  background: #f6eee2;
  padding-block: clamp(48px, 6vw, 80px);
  border-left: #37BDB8 4px solid;
  border-right: #37BDB8 4px solid;
}


/* 본문 텍스트 */
.quote-text {
  margin: 0;
  color: #3f9ea1;
  /* 청록 */
  letter-spacing: -0.02em;
  line-height: 1.55;
  font-size: 1.4rem;

  /* 왼쪽 여백(PC에서 더 넉넉하게) */
  padding-left: clamp(12px, 4vw, 110px);
}

/* 더 작은 화면에서 줄바꿈/간격 안정 */
@media (max-width: 575.98px) {
  .quote-text {
    line-height: 1.6;
    padding-left: 8px;
  }
}

.icon_tip {
  display: inline-block;
  padding: 8px 40px;
  background: #FAED50;
  border-radius: 30px;
  font-size: 1rem;
}

.icon_stitle {
  display: inline-block;
  padding: 8px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
}

/* 아이콘 */
.policy-icon-group {
  display: inline-flex;
  align-items: center;
}

/* 기본 원형 */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

/* 🔥 겹치게 하는 핵심 */
.icon-circle+.icon-circle {
  margin-left: -14px;
  /* 겹치는 정도 */
}

.icon-circle.yellow {
  background: #ffe65c;
  color: #1f3c88;
  z-index: 1;
  /* 뒤 */
}

.icon-circle.blue {
  background: #1f3c88;
  color: #fff;
  z-index: 2;
  /* 앞 */
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .icon-circle {
    width: 48px;
    height: 48px;
  }

  .icon-circle+.icon-circle {
    margin-left: -12px;
  }
}

.profile-image-wrap {
  max-width: 400px;
  border-radius: 300px;
  overflow: hidden;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}