html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
main,
audio,
video {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* button태그에 손모양 커서 */
button {
  cursor: pointer;
}
/* 익스하위버전에서 이미지 선없애기 */
fieldset,
img {
  border: 0;
}

/* 리스트 기호 빼기 */
ol,
ul {
  list-style: none;
}

/* 태그 기본 기울임꼴 제거 */
address,
em {
  font-style: normal;
}
strong {
  font-weight: normal;
}

/* 페이지안에서 가장 많은 링크색 지정 */
/* a {text-decoration: none; color: #000;} */

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* iframe으로 외부컨텐츠를 연결했을때
외부컨텐츠안쪽내용이 우리페이지에 영향을 주지못하도록 가려줌*/
iframe {
  overflow: hidden;
  border: 0;
}

/* 칸의 선을 합치기, 칸의 간격없애기, 가로를 늘려줌 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* 굵기 빼고 헤딩태그 폰트크기를 body에 선언한 크기와 일치시킴 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

/* 폼요소의 높이가 다를때 요소끼리 세로정렬시킴 */
input,
select,
textarea,
button {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

select {
  background-color: #ffffff;
}

/* 안드로이드 크롬 등에서 터치 시 생기는 하이라이트 색상 제거 */
select:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* 
모바일 크롬, 모바일 사파리 브라우져의 텍스트 자동확대 방지*/
body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: #abdff394 !important;
}

/* legend,caption,메뉴제목,섹션제목 블라인드 */
legend,
caption,
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #bbbbbb;
} /* Webkit,크롬,사파리 */
:-moz-placeholder {
  color: #bbbbbb;
} /* Firefox 4-18 */
::-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
} /* Firefox 19+ */
:-ms-input-placeholder {
  color: #bbbbbb;
} /* IE10+ */

/* a 태그 */
a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:focus-visible {
  outline: 2px solid var(--color-purple2);
  outline-offset: 2px;
}

:root {
  /* font size */
  --size-xxs: 1rem;
  --size-xs: 1.2rem;
  --size-sm: 1.4rem;
  --size-base: 1.6rem;
  --size-lg: 1.8rem;
  --size-xl: 2rem;
  --size-2xl: 2.4rem;
  --size-3xl: 2.8rem;

  /* color */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black2: #333;
  --color-gray: #7b7b7b;
  --color-gray2: #a3a3a3;
  --color-gray3: #767676;
  --color-gray4: #666666;
  --color-lightGray: #ddd;
  --color-boxGray: #f5f5f5;
  --color-border-gray: #e5e5e5;
  --color-red: #f94f4f;
  --color-light-purple: #efebf5;
  --color-purple: #6836b3;
  --color-purple2: #5c3a8f;
  --color-purple3: #251045;

  /* bold */
  --weight-regular: 400;
  --weight-medium: 600;
  --weight-large: 600;
  --weight-bold: 700;
  --weight-black: 700;

  /* border-radius */
  --border-radius-micro: 0.5rem;
  --border-radius-xs: 1rem;
  --border-radius-s: 1.2rem;
  --border-radius-r: 1.4rem;
  --border-radius-l: 1.6rem;

  /* margin */
  --margin-bottom-s: 1rem;
  --margin-bottom-r: 2rem;
  --margin-bottom-l: 3rem;
  --margin-bottom-xl: 4rem;
  --margin-bottom-xxl: 5rem;
}

body {
  scrollbar-gutter: stable;
  font-family: 'Inter', /* 영어 */ 'Noto Sans KR', /* 한국어 */ 'Noto Sans JP',
    /* 일본어 */ -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #f7f7f9;
  top: 0 !important;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}
.page-loading {
  opacity: 0;
}

.page-loaded {
  opacity: 1;
}

/* header */
#header {
  display: flex;
  justify-content: center;
  width: 100%;
}

#headerContainer {
  width: 100%;
  max-width: 600px;
  height: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
}
.headerBgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  object-fit: cover;
  background-repeat: no-repeat;
}
.headerInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  gap: 6px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}

#headerContainer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/etc/bg_cloud.gif') center/cover no-repeat;
  z-index: 1;
  pointer-events: none;
}
#headerContainer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/etc/bg_field.webp') bottom center/cover no-repeat;
  z-index: 2;
  pointer-events: none;
}

.headerRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 4rem;
}
#headerLogoImg {
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius-micro);
  box-sizing: border-box;
}
#headerLogoText {
  font-size: var(--size-xl);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#headerBlank {
  width: 30px;
}
.headerBottomValue {
  font-size: var(--size-sm);
  color: var(--color-white);
  font-weight: var(--weight-medium);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerLogoArea {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu_icon {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.sideMenuWrap {
  position: fixed;
  inset: 0;
  z-index: 99999;
  height: 100vh;
  height: 100dvh;
  height: var(--side-menu-height, 100dvh);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
}

.sideMenu {
  position: fixed;
  top: 0;
  right: max(0px, calc((100vw - 600px) / 2));
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  height: var(--side-menu-height, 100dvh);
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: white;
  border-right: 1px solid var(--color-border-gray);
}

.sideMenuItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #eee;
  padding: 16px;
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
}
.sideMenuItem > li > a {
  display: flex;
  width: 100%;
  cursor: pointer;
}
.sazooLink {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 4px;
}
.sazooLink img {
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius-micro);
}

.menuClose {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.menu_close_icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.loginBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--size-lg);
  font-weight: var(--weight-large);
}
.loginBox img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}
.logoutBtn,
.loginBtn a {
  font-size: var(--size-sm);
  font-weight: var(--weight-regular);
  color: var(--color-gray);
  text-decoration: none;
  cursor: pointer;
}
.recommend {
  padding: 8px 16px;
  font-size: var(--size-base);
  font-weight: var(--weight-large);
  background-color: var(--color-light-purple);
  cursor: default;
}
/* footer */
#footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

#footerInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  padding: 30px 16px;
  gap: 32px;
  background: var(--color-black);
}

.footerInfo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footerInfoTitle {
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-size: var(--size-lg);
}
.footerInfoValueWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footerInfoValue {
  color: var(--color-boxGray);
  font-size: var(--size-sm);
  font-weight: var(--weight-regular);
}
.footerInfoIcon {
  width: 24px;
  height: 24px;
}
.footerInfoIconWrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--margin-bottom-s);
}

.footerCopyRight {
  color: var(--color-white);
  font-size: var(--size-sm);
}

/* main */

#main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: var(--color-white);
  max-width: 600px;
  min-width: 280px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  flex: 1;
  gap: 30px;
}
.mainSection {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 16px;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.mainSectionTitle {
  font-size: var(--size-xl);
  font-weight: var(--weight-black);
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--margin-bottom-r);
}
.mainSectionTitle.mbSmall {
  margin-bottom: var(--margin-bottom-s);
}
.mainSectionTitle.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainSectionDescription {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  margin-bottom: var(--margin-bottom-r);
  color: var(--color-gray3);
}
.mainSectionDescription.column {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--color-black2);
}
.sectionContents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sectionImageBox {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-l);
}
.sectionImageBox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.sectionImageBox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contents_textBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  color: var(--color-white);
  font-size: var(--size-sm);
  text-align: center;
}
.contents_textBox b {
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
}
.link_button {
  width: 50%;
  padding: 6px 8px 7px 8px;
  border: 1.5px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-micro);
  margin-top: 4px;
  color: var(--color-white);
}
/* 마담그리샴 타로 */
.madamGrishamImgWrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 8px;
}
.madamGrishamDescription {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  gap: 4px;
}
.madamGrishamImg {
  width: 100%;
  aspect-ratio: 12/10;
  border-radius: var(--border-radius-xs);
  border: 1px solid var(--color-border-gray);
  box-sizing: border-box;
  cursor: pointer;
}
.madamGrishamImgTitle {
  width: 100%;
  display: block;
  text-align: left;
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.madamGrishamImgDesc {
  width: 100%;
  color: var(--color-black2);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardGrid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cardItem {
  width: 100%;
}
.cardLink {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.cardThumb {
  width: 90px;
  aspect-ratio: 10 / 8;
  border-radius: var(--border-radius-xs);
  overflow: hidden;
  border: 1px solid var(--color-border-gray);
  box-sizing: border-box;
  cursor: pointer;
}
.cardThumb:focus-visible,
.gridCardThumb:focus-visible,
.bannerThumb:focus-visible,
.madamGrishamImg:focus-visible,
.tabs button:focus-visible {
  outline: 2px solid var(--color-purple2);
  outline-offset: 2px;
}

.cardThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.cardTitleBox {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cardTitle {
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cardDesc {
  font-size: 13px;
  font-weight: var(--weight-regular);
  color: var(--color-black2);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.imageCardGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
  overflow-x: hidden; /* 내부 요소가 삐져나와도 스크롤 안 생기게 함 */
  touch-action: pan-y; /* 가로 터치 제스처를 브라우저가 가로채지 못하게 함 */
}
.imageCardGrid.noMarginTop {
  margin-top: 0;
}

.gridCardItem {
  /* cursor: pointer; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.gridCardLink {
  width: 100%;
  min-width: 0;
}

.gridCardThumb {
  width: 100%;
  aspect-ratio: 10 / 7;
  border-radius: var(--border-radius-s);
  overflow: hidden;
  box-sizing: border-box;
}

.gridCardThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transform: scale(1.05); */
}

.gridCardTitle {
  width: 100%;
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  margin-top: 8px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gridCardDesc {
  width: 100%;
  color: var(--color-black2);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  margin-top: 4px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zodiacPeriod {
  width: 100%;
  font-size: var(--size-xs);
  color: var(--color-gray3);
  margin-top: 2px;
  text-align: left;
}

.counselList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
#callTop5 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.counselItem {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.counselRank {
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
  text-align: center;
  color: var(--color-black);
}

.counselProfile {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-s);
  overflow: hidden;
  margin-right: 20px;
}

.counselImg {
  width: 100%;
  height: 100%;
  background-color: var(--color-lightGray);
}

.counselInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.counselName {
  font-size: var(--size-base);
  font-weight: var(--weight-medium);
  color: var(--color-black);
}

.counselReview {
  font-size: var(--size-xs);
  color: var(--color-gray);
}

.counselBottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counselPrice {
  font-size: var(--size-base);
  font-weight: var(--weight-bold);
  color: var(--color-black);
}

.counselStatus {
  font-size: var(--size-xs);
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: var(--weight-bold);
}

.counselStatus.active {
  background-color: #44e3de;
  color: var(--color-white);
}

.counselStatus.disabled {
  background-color: var(--color-gray);
  color: var(--color-white);
}

.tabs {
  width: 100%;
  border-bottom: 1px solid var(--color-lightGray);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.tabs button {
  padding: 2px 6px 4px;
  font-size: var(--size-base);
  font-weight: var(--weight-bold);
  color: var(--color-gray3);
  border: none;
  background-color: transparent;
}

.tabs button.active {
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

#floatingArea {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 100%;
  pointer-events: none;
  display: flex;
  display: none;
  justify-content: flex-end;
  padding-right: 20px;
}

#scrollTopBtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  padding-top: 4px;
}
#scrollTopBtn img {
  width: 28px;
  height: 28px;
}

/* 나타날 때 */
#scrollTopBtn.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* 누를 때 살짝 눌리는 느낌 */
#scrollTopBtn:active {
  transform: scale(0.92);
}
.today {
  font-size: var(--size-base);
  font-weight: var(--weight-bold);
  color: var(--color-black);
}
/* 이미지 가로 스크롤 배너 */
.bannerScroll {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: 200px;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
}

.bannerScroll.isDragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.bannerScroll::-webkit-scrollbar {
  display: none;
}

/* 개별 이미지 카드 */
.bannerItem {
  box-sizing: border-box;
}

#bannerSlider .bannerItem[data-key='new_free_star_gh'] {
  grid-column: 1;
  grid-row: 1;
}

#bannerSlider .bannerItem[data-key='new_free_number_energy'] {
  grid-column: 1;
  grid-row: 2;
}

.bannerThumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-xs);
  cursor: pointer;
}

#tico {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.result_img_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
#result_img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
#result_img.ganzhi_img {
  width: 40%;
  max-width: 160px;
  aspect-ratio: 1/1;
  object-fit: contain;
  align-items: center;
  margin: 24px;
}

.result_img_text,
.myInfo_summary {
  width: 100%;
  padding: 16px 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--color-boxGray);
  font-size: var(--size-base);
  line-height: var(--size-base);
  font-weight: var(--weight-large);
  color: var(--color-purple);
}
.myInfo_summary.iconBar {
  flex-wrap: wrap;
  gap: 10px 12px;
  min-height: 48px;
  padding: 12px 16px;
  background-color: var(--color-light-purple);
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.3;
  font-weight: var(--weight-large);
}
.myInfo_summary.iconBar .myInfoIconItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}
.myInfo_summary.iconBar .myInfoIcon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.myInfo_summary.iconBar .myInfoSeparator {
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background-color: var(--color-gray2);
  opacity: 0.55;
}
@media (max-width: 480px) {
  .myInfo_summary.iconBar {
    gap: 8px 10px;
    padding: 12px;
    font-size: var(--size-sm);
  }
  .myInfo_summary.iconBar .myInfoIcon {
    width: 20px;
    height: 20px;
  }
}
.myinfo_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.myInfo_summary.lovePair {
  align-items: stretch;
  gap: 18px;
  padding: 18px 22px;
  background-color: rgba(250, 247, 255, 0.72);
}
.myInfo_summary.lovePair .myinfo_item {
  min-width: 0;
  padding: 22px 18px;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--color-purple2) 18%, white);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.myInfo_summary.lovePair #partner_summary {
  border-color: color-mix(in srgb, #6c8ddf 22%, white);
}
.lovePairNameLine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 100%;
}
.lovePairLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 20px;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: var(--color-purple2);
  color: var(--color-white);
  font-size: var(--size-xxs);
  line-height: 1;
  font-weight: var(--weight-bold);
  white-space: nowrap;
}
.lovePairLabel--partner {
  background-color: #6c8ddf;
}
.lovePairName {
  color: var(--color-black2);
  font-size: var(--size-xl);
  line-height: 1.2;
  font-weight: var(--weight-black);
}
.lovePairBirth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: 1.35;
  font-weight: var(--weight-large);
}
.lovePairIcon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.lovePairMeta {
  color: var(--color-gray4);
  font-size: var(--size-xs);
  line-height: 1.35;
  font-weight: var(--weight-large);
}
@media (max-width: 640px) {
  .myInfo_summary.lovePair {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .myInfo_summary.lovePair .myinfo_item {
    min-height: 132px;
    border-radius: 20px;
  }
}
.result_img_text.text_left {
  justify-content: left;
}
.result_img_text.zodiacSummary {
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 10px 12px;
  background-color: var(--color-light-purple);
  color: var(--color-black2);
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
}
.zodiacSummarySign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple2);
  font-size: var(--size-xl);
  line-height: 1;
  font-weight: var(--weight-bold);
}
.zodiacSummaryMain {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.zodiacSummaryName {
  color: var(--color-black2);
  font-size: var(--size-lg);
  line-height: 1.15;
  font-weight: var(--weight-black);
}
.zodiacSummaryDate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--color-purple2) 8%, var(--color-white));
  color: var(--color-gray4);
  font-size: var(--size-sm);
  line-height: 1.3;
  font-weight: var(--weight-large);
}
.zodiacSummaryDateIcon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .result_img_text.zodiacSummary {
    justify-content: center;
    gap: 8px;
    padding: 9px 10px;
    text-align: center;
  }
  .zodiacSummarySign {
    font-size: var(--size-lg);
  }
  .zodiacSummaryName {
    font-size: var(--size-base);
  }
  .zodiacSummaryDate {
    font-size: var(--size-xs);
    padding: 5px 8px;
  }
}
.fortuneCookieMessage {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 24px;
  background-color: var(--color-white);
}
.fortuneCookieMessage + .result_Text_box,
.fortuneCookieMessage ~ .result_Text_box {
  display: none;
}
.fortuneCookieHeader {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-purple2) 14%, var(--color-lightGray));
}
.fortuneCookieHeaderIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--color-purple2) 10%, var(--color-white));
  color: var(--color-purple2);
  font-size: var(--size-2xl);
  line-height: 1;
}
.fortuneCookieHeaderText {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.fortuneCookieHeaderText h2 {
  margin: 0;
  color: var(--color-purple2);
  font-size: var(--size-2xl);
  line-height: 1.2;
  font-weight: var(--weight-black);
}
.fortuneCookieHeaderText p {
  margin: 0;
  color: var(--color-gray4);
  font-size: var(--size-sm);
  line-height: 1.45;
  font-weight: var(--weight-medium);
}
.fortuneCookieCard {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 26px 20px;
  border-radius: 0;
  background-color: var(--color-white);
}
.fortuneCookieText {
  display: block;
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.9;
  font-weight: var(--weight-large);
  word-break: keep-all;
}
.jegalForceTimeBar {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: var(--color-light-purple);
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.3;
  font-weight: var(--weight-large);
  text-align: center;
}
.jegalForceTimeIcon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.jegalForceQuoteBox {
  position: relative;
  min-height: 180px;
  padding: 28px 20px;
}
.jegalForceQuoteBox #total_result {
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.9;
  font-weight: var(--weight-regular);
  word-break: keep-all;
}
@media (max-width: 640px) {
  .fortuneCookieMessage {
    gap: 18px;
    padding: 22px 16px;
  }
  .fortuneCookieHeader {
    gap: 12px;
    padding-bottom: 14px;
  }
  .fortuneCookieHeaderIcon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: var(--size-xl);
  }
  .fortuneCookieHeaderText h2 {
    font-size: var(--size-xl);
  }
  .fortuneCookieCard {
    min-height: 132px;
    padding: 22px 0;
    border-radius: 0;
  }
  .jegalForceTimeBar {
    min-height: 44px;
    gap: 8px;
    padding: 12px;
    font-size: var(--size-sm);
  }
  .jegalForceTimeIcon {
    width: 20px;
    height: 20px;
  }
  .jegalForceQuoteBox {
    min-height: 150px;
    padding: 24px 14px;
  }
  .jegalForceQuoteBox #total_result {
    font-size: var(--size-sm);
    line-height: 1.75;
  }
}
.result_box {
  width: 100%;
  border-radius: var(--border-radius-xs);
  border: 1px solid var(--color-lightGray);
  overflow: hidden;
}
.result_box.nonborder {
  border: none;
  border-radius: 0;
}
.result_box.iframe_result {
  border: none;
  border-radius: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.horoscope_score_box {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light-purple);
  border-radius: var(--border-radius-xs);
  flex-wrap: wrap;
}

.horoscope_score_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  color: var(--color-gray4);
}
.horoscope_score_item .horoscope_score {
  font-size: var(--size-lg);
  font-weight: var(--weight-black);
  color: var(--color-purple);
}

.nameMatchScoreCard {
  --score: 0;
  width: 100%;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fbf8ff 0%, #fff5f9 100%);
  border-radius: var(--border-radius-sm);
}

.nameMatchScoreGauge {
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 58%, transparent 59%),
    conic-gradient(var(--color-purple2) calc(var(--score, 0) * 1%), rgba(120, 93, 183, 0.16) 0);
}

.nameMatchScoreInner {
  width: 78px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}

.nameMatchScoreValue {
  color: var(--color-purple);
  font-size: 30px;
  line-height: 1;
  font-weight: var(--weight-black);
}

.nameMatchScoreUnit {
  color: var(--color-purple);
  font-size: var(--size-sm);
  line-height: 1;
  font-weight: var(--weight-black);
  transform: translateY(2px);
}

.nameMatchScoreText {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nameMatchScoreLabel {
  color: var(--color-gray4);
  font-size: var(--size-xs);
  line-height: 1.35;
  font-weight: var(--weight-large);
}

.scoreSectionTitle {
  display: block;
  color: var(--color-black);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-large);
}

.tojungScoreBars,
.scoreBarList {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px;
}

.tojungScoreBarItem,
.scoreBarItem {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(72px, 92px) 1fr 42px;
  align-items: center;
  gap: 12px;
  flex: none;
}

.tojungScoreBarLabel,
.scoreBarLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 28%, var(--color-white));
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--color-purple2) 18%, var(--color-white));
  color: var(--color-purple2);
  font-size: var(--size-xs);
  line-height: 1;
  font-weight: 800;
  word-break: keep-all;
}

.tojungScoreTrack,
.scoreBarTrack {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--color-purple2) 10%, var(--color-white));
}

.tojungScoreFill,
.scoreBarFill {
  display: block;
  width: calc(var(--score, 0) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-purple2) 72%, var(--color-white)) 0%,
    var(--color-purple2) 100%
  );
}

.tojungScoreBarItem .horoscope_score,
.scoreBarItem .horoscope_score {
  color: var(--color-purple2);
  font-size: var(--size-sm);
  line-height: 1;
  font-weight: var(--weight-black);
  text-align: right;
}

.ddiScorePanel {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.tojungScorePanel {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.loveScorePanel {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.ddiScoreSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tojungScoreSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loveScoreSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ddiScoreCircle {
  --score: 0;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-purple2) calc(var(--score, 0) * 1%),
    color-mix(in srgb, var(--color-purple2) 8%, var(--color-white)) 0
  );
}

.tojungScoreCircle {
  --score: 0;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-purple2) calc(var(--score, 0) * 1%),
    color-mix(in srgb, var(--color-purple2) 8%, var(--color-white)) 0
  );
}

.loveScoreCircle {
  --score: 0;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-purple2) calc(var(--score, 0) * 1%),
    color-mix(in srgb, var(--color-purple2) 8%, var(--color-white)) 0
  );
}

.ddiScoreCircle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background-color: var(--color-white);
}

.tojungScoreCircle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background-color: var(--color-white);
}

.loveScoreCircle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background-color: var(--color-white);
}

.ddiScoreCircleValue {
  position: relative;
  z-index: 1;
  color: var(--color-black2);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.tojungScoreCircleValue {
  position: relative;
  z-index: 1;
  color: var(--color-black2);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.loveScoreCircleValue {
  position: relative;
  z-index: 1;
  color: var(--color-black2);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.ddiScoreCircleLabel {
  color: var(--color-black2);
  font-size: var(--size-xs);
  line-height: 1.3;
  font-weight: 800;
}

.tojungScoreCircleLabel {
  color: var(--color-black2);
  font-size: var(--size-xs);
  line-height: 1.3;
  font-weight: 800;
}

.loveScoreCircleLabel {
  color: var(--color-black2);
  font-size: var(--size-xs);
  line-height: 1.3;
  font-weight: 800;
}

.ddiScoreRows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.tojungScoreRows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.loveScoreRows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.ddiScoreRows .scoreBarItem {
  grid-template-columns: minmax(64px, 78px) 1fr 34px;
  gap: 10px;
}

.tojungScoreRows .tojungScoreBarItem {
  grid-template-columns: minmax(72px, 92px) 1fr 34px;
  gap: 10px;
}

.loveScoreRows .scoreBarItem {
  grid-template-columns: minmax(64px, 78px) 1fr 34px;
  gap: 10px;
}

.loveScoreRows .scoreBarLabel {
  min-width: 58px;
  justify-content: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-black2);
  font-size: var(--size-xs);
  font-weight: 800;
}

.ddiScoreRows .scoreBarLabel {
  min-width: 58px;
  justify-content: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-black2);
  font-size: var(--size-xs);
  font-weight: 800;
}

.tojungScoreRows .tojungScoreBarLabel {
  min-width: 72px;
  justify-content: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-black2);
  font-size: var(--size-xs);
  font-weight: 800;
}

.ddiScoreRows .scoreBarTrack {
  height: 6px;
  background-color: var(--color-lightGray);
}

.tojungScoreRows .tojungScoreTrack {
  height: 6px;
  background-color: var(--color-lightGray);
}

.loveScoreRows .scoreBarTrack {
  height: 6px;
  background-color: var(--color-lightGray);
}

.ddiScoreRows .scoreBarFill {
  background: var(--color-purple2);
}

.tojungScoreRows .tojungScoreFill {
  background: var(--color-purple2);
}

.loveScoreRows .scoreBarFill {
  background: var(--color-purple2);
}

.ddiScoreRows .scoreBarItem .horoscope_score {
  color: var(--color-black2);
  font-size: var(--size-xs);
}

.tojungScoreRows .tojungScoreBarItem .horoscope_score {
  color: var(--color-black2);
  font-size: var(--size-xs);
}

.loveScoreRows .scoreBarItem .horoscope_score {
  color: var(--color-black2);
  font-size: var(--size-xs);
}

.relationshipScorePanel {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.relationshipScoreSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.relationshipScoreCircle {
  --score: 0;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-purple2) calc(var(--score, 0) * 1%),
    color-mix(in srgb, var(--color-purple2) 8%, var(--color-white)) 0
  );
}

.relationshipScoreCircle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background-color: var(--color-white);
}

.relationshipScoreCircleValue {
  position: relative;
  z-index: 1;
  color: var(--color-black2);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.relationshipScoreCircleLabel {
  color: var(--color-black2);
  font-size: var(--size-xs);
  line-height: 1.3;
  font-weight: 800;
}

.relationshipScoreRows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.relationshipScoreRows .scoreBarItem {
  grid-template-columns: minmax(64px, 78px) 1fr 34px;
  gap: 10px;
}

.relationshipScoreRows .scoreBarLabel {
  min-width: 58px;
  justify-content: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-black2);
  font-size: var(--size-xs);
  font-weight: 800;
}

.relationshipScoreRows .scoreBarTrack {
  height: 6px;
  background-color: var(--color-lightGray);
}

.relationshipScoreRows .scoreBarFill {
  background: var(--color-purple2);
}

.relationshipScoreRows .scoreBarItem .horoscope_score {
  color: var(--color-black2);
  font-size: var(--size-xs);
}

.sevenDaysScorePanel {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.sevenDaysScoreSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sevenDaysScoreCircle {
  --score: 0;
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-purple2) calc(var(--score, 0) * 1%),
    color-mix(in srgb, var(--color-purple2) 8%, var(--color-white)) 0
  );
}

.sevenDaysScoreCircle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background-color: var(--color-white);
}

.sevenDaysScoreCircleValue {
  position: relative;
  z-index: 1;
  color: var(--color-black2);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.sevenDaysScoreCircleLabel {
  color: var(--color-black2);
  font-size: var(--size-xs);
  line-height: 1.3;
  font-weight: 800;
}

.sevenDaysScoreRows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.sevenDaysScoreRows .scoreBarItem {
  grid-template-columns: minmax(64px, 78px) 1fr 34px;
  gap: 10px;
}

.sevenDaysScoreRows .scoreBarLabel {
  min-width: 58px;
  justify-content: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-black2);
  font-size: var(--size-xs);
  font-weight: 800;
}

.sevenDaysScoreRows .scoreBarTrack {
  height: 6px;
  background-color: var(--color-lightGray);
}

.sevenDaysScoreRows .scoreBarFill {
  background: var(--color-purple2);
}

.sevenDaysScoreRows .scoreBarItem .horoscope_score {
  color: var(--color-black2);
  font-size: var(--size-xs);
}

@media (max-width: 640px) {
  .tojungScoreBars,
  .scoreBarList {
    gap: 10px;
    padding: 14px;
  }

  .tojungScoreBarItem,
  .scoreBarItem {
    grid-template-columns: minmax(64px, 82px) 1fr 34px;
    gap: 8px;
  }

  .tojungScoreBarLabel,
  .scoreBarLabel,
  .tojungScoreBarItem .horoscope_score,
  .scoreBarItem .horoscope_score {
    font-size: var(--size-xs);
  }

  .tojungScoreBarLabel,
  .scoreBarLabel {
    min-width: 52px;
    padding: 6px 8px;
  }

  .tojungScoreTrack,
  .scoreBarTrack {
    height: 8px;
  }

  .nameMatchScoreCard {
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .nameMatchScoreGauge {
    width: 92px;
  }

  .nameMatchScoreInner {
    width: 68px;
  }

  .nameMatchScoreValue {
    font-size: 26px;
  }

  .nameMatchScoreText {
    align-items: center;
  }

  .ddiScorePanel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .tojungScorePanel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .loveScorePanel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .relationshipScorePanel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .sevenDaysScorePanel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .ddiScoreCircle {
    width: 92px;
    height: 92px;
  }

  .tojungScoreCircle {
    width: 92px;
    height: 92px;
  }

  .loveScoreCircle {
    width: 92px;
    height: 92px;
  }

  .relationshipScoreCircle {
    width: 92px;
    height: 92px;
  }

  .sevenDaysScoreCircle {
    width: 92px;
    height: 92px;
  }

  .ddiScoreCircleValue {
    font-size: 26px;
  }

  .tojungScoreCircleValue {
    font-size: 26px;
  }

  .loveScoreCircleValue {
    font-size: 26px;
  }

  .relationshipScoreCircleValue {
    font-size: 26px;
  }

  .sevenDaysScoreCircleValue {
    font-size: 26px;
  }

  .ddiScoreRows .scoreBarItem {
    grid-template-columns: minmax(58px, 72px) 1fr 32px;
    gap: 8px;
  }

  .tojungScoreRows .tojungScoreBarItem {
    grid-template-columns: minmax(64px, 82px) 1fr 32px;
    gap: 8px;
  }

  .loveScoreRows .scoreBarItem {
    grid-template-columns: minmax(58px, 72px) 1fr 32px;
    gap: 8px;
  }

  .relationshipScoreRows .scoreBarItem {
    grid-template-columns: minmax(58px, 72px) 1fr 32px;
    gap: 8px;
  }

  .sevenDaysScoreRows .scoreBarItem {
    grid-template-columns: minmax(58px, 72px) 1fr 32px;
    gap: 8px;
  }

  .ddiScoreRows .scoreBarTrack {
    height: 6px;
  }

  .tojungScoreRows .tojungScoreTrack {
    height: 6px;
  }

  .loveScoreRows .scoreBarTrack {
    height: 6px;
  }

  .relationshipScoreRows .scoreBarTrack {
    height: 6px;
  }

  .sevenDaysScoreRows .scoreBarTrack {
    height: 6px;
  }
}

.result_Text_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: var(--size-base);
  color: var(--color-black);
  font-weight: var(--weight-large);
  padding: 30px 16px 18px;
}
.result_keyword_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.result_keyword_item {
  font-size: var(--size-lg);
  line-height: var(--size-lg);
  font-weight: var(--weight-black);
  color: var(--color-purple);
  border-radius: 100px;
  padding: 8px 16px;
  background-color: white;
}

.result_text_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result_text_row span {
  font-weight: var(--weight-regular);
  line-height: var(--weight-regular) * 1.6;
  white-space: pre-wrap;
}

.yongmunResultSummary {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background-color: var(--color-light-purple);
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-large);
  text-align: center;
  word-break: keep-all;
}

.yongmunResultText {
  gap: 22px;
  padding: 28px 24px 18px;
  background-color: var(--color-white);
}

.yongmunResultText .result_text_row {
  gap: 14px;
}

.yongmunResultText .result_text_row > b {
  color: var(--color-purple2);
  font-size: var(--size-lg);
  line-height: 1.35;
  font-weight: var(--weight-black);
  word-break: keep-all;
}

.yongmunResultText .result_text_row > span,
.yongmunResultText #total_result {
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.85;
  font-weight: var(--weight-regular);
  word-break: keep-all;
}

.yongmunResultText .result_text_row > div:not(.horoscope_score_box) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yongmunResultText .result_tag {
  background-color: var(--color-light-purple);
  color: var(--color-purple2);
}

@media (max-width: 640px) {
  .yongmunResultSummary {
    min-height: 44px;
    padding: 12px;
    font-size: var(--size-sm);
  }

  .yongmunResultText {
    gap: 18px;
    padding: 24px 16px 18px;
  }

  .yongmunResultText .result_text_row > b {
    font-size: var(--size-base);
  }

  .yongmunResultText .result_text_row > span,
  .yongmunResultText #total_result {
    font-size: var(--size-sm);
    line-height: 1.75;
  }
}

.starGhPairBox {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.starGhSignChip {
  flex: 1 1 130px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  border: 1px solid var(--color-lightGray);
  border-color: color-mix(in srgb, var(--color-purple2) 28%, white);
  border-radius: var(--border-radius-xs);
  background-color: var(--color-boxGray);
  background-color: color-mix(in srgb, var(--color-purple2) 8%, white);
  color: var(--color-purple);
  text-align: center;
}

.starGhSignChip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--size-lg);
  line-height: 1.25;
  font-weight: var(--weight-large);
  color: var(--color-purple2);
}

.starGhZodiacIcon {
  font-size: 1.1em;
  line-height: 1;
}

.starGhSignLabel {
  color: var(--color-gray4);
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.starGhHeart {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--color-white);
  font-size: var(--size-lg);
  line-height: 1;
}

.starGhInlineSign {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#star_pair_text.mf_view_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.2;
}

.starGhResultView {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin-bottom: 3rem;
}

.starGhProfileCard,
.starGhMatchCard,
.starGhAnalysisCard {
  width: 100%;
  border: 1px solid color-mix(in srgb, #e8792f 12%, var(--color-lightGray));
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.06);
}

.starGhProfileCard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 26px;
}

.starGhPerson {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.starGhPersonIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: color-mix(in srgb, #e8792f 10%, var(--color-white));
  color: #e8792f;
}

.starGhPersonIcon {
  width: 72px;
  height: 72px;
}

.starGhPersonIcon img {
  width: 34px;
  height: 34px;
  filter: invert(56%) sepia(70%) saturate(1350%) hue-rotate(342deg) brightness(96%) contrast(88%);
}

.starGhPersonText {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--color-gray4);
  font-size: var(--size-sm);
  line-height: 1.25;
  font-weight: var(--weight-medium);
}

.starGhPersonText strong {
  color: var(--color-black2);
  font-size: var(--size-xl);
  line-height: 1.2;
  font-weight: var(--weight-black);
}

.starGhProfileDivider {
  width: 1px;
  height: 96px;
  background: var(--color-border-gray);
}

.starGhMatchCard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 24px;
  flex-wrap: wrap;
}

.starGhSignBlock {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.starGhSignBlock strong {
  color: var(--color-black2);
  font-size: var(--size-xl);
  line-height: 1.15;
  font-weight: var(--weight-black);
  word-break: keep-all;
}

.starGhSignIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.starGhMatchHeart {
  color: #ef4f45;
  font-size: 22px;
  line-height: 1;
}

.starGhAnalysisCard b {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black2);
  font-size: var(--size-lg);
  line-height: 1.35;
  font-weight: var(--weight-black);
}

.starGhAnalysisCard b span:first-child {
  color: #e8792f;
  font-size: var(--size-xl);
  line-height: 1;
}

.starGhAnalysisCard {
  padding: 28px 26px;
}

.starGhAnalysisCard p {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 20px;
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.85;
  font-weight: var(--weight-regular);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.gganbuResultView {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin-bottom: 3rem;
}

.gganbuProfileCard,
.gganbuScoreCard,
.gganbuAdviceCard,
.gganbuAnalysisCard {
  width: 100%;
  border: 1px solid color-mix(in srgb, #e8792f 12%, var(--color-lightGray));
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.06);
}

.gganbuProfileCard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 26px;
}

.gganbuPerson {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gganbuPersonIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: color-mix(in srgb, #e8792f 10%, var(--color-white));
}

.gganbuPersonIcon img {
  width: 34px;
  height: 34px;
  filter: invert(56%) sepia(70%) saturate(1350%) hue-rotate(342deg) brightness(96%) contrast(88%);
}

.gganbuPersonText {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--color-gray4);
  font-size: var(--size-sm);
  line-height: 1.25;
  font-weight: var(--weight-medium);
}

.gganbuPersonText strong {
  color: var(--color-black2);
  font-size: var(--size-xl);
  line-height: 1.2;
  font-weight: var(--weight-black);
}

.gganbuProfileDivider {
  width: 1px;
  height: 96px;
  background: var(--color-border-gray);
}

.gganbuScoreCard {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  padding: 26px 24px;
}

.gganbuScoreLabel {
  color: var(--color-gray4);
  font-size: var(--size-base);
  line-height: 1.2;
  font-weight: var(--weight-large);
}

.gganbuScoreCard strong {
  color: #e8792f;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: var(--weight-black);
}

.gganbuAdviceCard {
  padding: 24px 26px;
  border-color: color-mix(in srgb, #e8792f 18%, var(--color-lightGray));
  background: color-mix(in srgb, #e8792f 5%, var(--color-white));
}

.gganbuAdviceCard b,
.gganbuAnalysisCard b {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black2);
  font-size: var(--size-lg);
  line-height: 1.3;
  font-weight: var(--weight-black);
}

.gganbuAdviceCard p {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 14px;
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.65;
  font-weight: var(--weight-medium);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

.gganbuAnalysisCard {
  padding: 26px;
}

.gganbuAnalysisCard b span:first-child {
  color: #e8792f;
  font-size: 30px;
  line-height: 1;
}

.gganbuAnalysisCard p {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 18px;
  color: var(--color-black2);
  font-size: var(--size-base);
  line-height: 1.85;
  font-weight: var(--weight-regular);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

@media (max-width: 480px) {
  .starGhPairBox {
    flex-direction: column;
    align-items: stretch;
  }

  .starGhSignChip {
    flex-basis: auto;
  }

  .starGhHeart {
    min-width: 0;
    min-height: 20px;
  }

  .starGhProfileCard {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .starGhProfileDivider {
    width: 100%;
    height: 1px;
  }

  .starGhPerson {
    justify-content: center;
  }

  .starGhPersonIcon {
    width: 58px;
    height: 58px;
  }

  .starGhPersonIcon img {
    width: 28px;
    height: 28px;
  }

  .starGhPersonText strong {
    font-size: var(--size-lg);
  }

  .starGhMatchCard {
    gap: 10px;
    padding: 22px 16px;
  }

  .starGhSignBlock {
    gap: 6px;
  }

  .starGhSignBlock strong {
    font-size: var(--size-lg);
  }

  .starGhSignIcon {
    font-size: 22px;
  }

  .starGhMatchHeart {
    font-size: 20px;
  }

  .starGhAnalysisCard {
    padding: 22px 18px;
  }

  .starGhAnalysisCard p {
    font-size: var(--size-sm);
    line-height: 1.75;
  }

  .gganbuProfileCard {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .gganbuProfileDivider {
    width: 100%;
    height: 1px;
  }

  .gganbuPerson {
    justify-content: center;
    gap: 14px;
  }

  .gganbuPersonIcon {
    width: 58px;
    height: 58px;
  }

  .gganbuPersonIcon img {
    width: 28px;
    height: 28px;
  }

  .gganbuPersonText strong {
    font-size: var(--size-lg);
  }

  .gganbuScoreCard {
    gap: 10px;
    padding: 22px 16px;
  }

  .gganbuScoreLabel {
    font-size: var(--size-sm);
  }

  .gganbuScoreCard strong {
    font-size: 3.8rem;
  }

  .gganbuAdviceCard,
  .gganbuAnalysisCard {
    padding: 22px 18px;
  }

  .gganbuAdviceCard p,
  .gganbuAnalysisCard p {
    font-size: var(--size-sm);
    line-height: 1.75;
  }
}

.lucky_up_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lucky_up_box div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.result_text_row .lucky_tag {
  padding: 4px 8px;
  background-color: var(--color-light-purple);
  border-radius: var(--border-radius-micro);
  color: var(--color-purple);
  font-size: var(--size-sm);
  font-weight: var(--weight-large);
}
.result_text_row .lucky_tag_text {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
}
.result_text_row .lucky_tag_text span {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
}
.tip_box {
  width: 100%;
  padding: 8px;
  background-color: var(--color-boxGray);
  border-radius: var(--border-radius-micro);
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-large);
}

.result_text_row .tip_text {
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-large);
  color: var(--color-black2);
}

.result_text_score {
  font-size: var(--size-sm);
  color: var(--color-purple);
  font-weight: var(--weight-medium);
}
.result_text_score .result_jisu {
  font-size: var(--size-sm);
  color: var(--color-purple);
  font-weight: var(--weight-medium);
}

.sevenDaysTitleBlock {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--margin-bottom-r);
}

.sevenDaysTitleBlock .mainSectionTitle {
  margin-bottom: 0;
}

.sevenDaysTitlePeriod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: var(--color-light-purple);
  color: var(--color-purple);
  font-size: var(--size-sm);
  font-weight: var(--weight-large);
  line-height: 1.2;
}

.sevenDaysLuckBadge {
  align-self: flex-start;
  min-width: 74px;
  padding: 7px 14px;
  border-radius: 999px;
  text-align: center;
  font-size: var(--size-sm);
  font-weight: var(--weight-black);
  line-height: 1.2;
  color: var(--color-purple);
  background-color: var(--color-light-purple);
}

.sevenDaysLuckBadge--veryGood {
  color: #0f766e;
  background-color: #ccfbf1;
}

.sevenDaysLuckBadge--good {
  color: #2563eb;
  background-color: #dbeafe;
}

.sevenDaysLuckBadge--soso {
  color: #8a5a00;
  background-color: #fef3c7;
}

.sevenDaysLuckBadge--bad {
  color: #b42318;
  background-color: #fee4e2;
}

.sevenDaysLuckBadge--unknown {
  color: var(--color-gray4);
  background-color: var(--color-lightGray);
}

.sevenDaysIncomeBadge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--size-sm);
  font-weight: var(--weight-black);
  line-height: 1.2;
}

.sevenDaysIncomeBadge::before {
  content: '💸';
  font-size: var(--size-base);
  line-height: 1;
}

.sevenDaysIncomeBadge--income {
  color: #0f766e;
  background-color: #ccfbf1;
}

.sevenDaysIncomeBadge--spending {
  color: #b42318;
  background-color: #fee4e2;
}

.sevenDaysIncomeBadge--balance {
  color: #2563eb;
  background-color: #dbeafe;
}

.sevenDaysIncomeBadge--neutral {
  color: var(--color-gray4);
  background-color: var(--color-lightGray);
}

.sevenDaysLottoBox {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sevenDaysLottoBall {
  width: 38px;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  font-size: var(--size-sm);
  font-weight: var(--weight-black);
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.18), 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.sevenDaysLottoBall--yellow {
  background-color: #fbc400;
}

.sevenDaysLottoBall--blue {
  background-color: #69c8f2;
}

.sevenDaysLottoBall--green {
  background-color: #b0d840;
}

.sevenDaysLottoBall--pink {
  background-color: #ee84af;
}

.sevenDaysLottoBall--gray {
  background-color: #aaaaaa;
}

.sevenDaysDisclaimer {
  width: 100%;
  color: var(--color-gray4);
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  line-height: 1.5;
}

.result_text_item_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.result_tag {
  padding: 6px 8px;
  background-color: var(--color-purple);
  font-size: var(--size-xs);
  line-height: var(--size-xs);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  display: inline-block;
  white-space: nowrap;
  align-self: flex-start;
  border-radius: var(--border-radius-l);
  display: flex;
  justify-content: center;
  align-items: center;
}
.selected_year {
  padding: 6px 16px;
  font-size: var(--size-xs);
  line-height: var(--size-xs);
  color: var(--color-purple);
  font-weight: var(--weight-large);
  border-radius: 100px;
  background-color: #efebf5;
  display: flex;
  justify-content: center;
  align-items: center;
}
#star_point {
  color: var(--color-purple);
  margin-left: 16px;
}

#link {
  margin-bottom: 30px;
}

#link .s_list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0;
}

/* 각 아이템 크기 50% */
#link .s_list li {
  list-style: none;
  width: calc(50% - 6px);
}

/* 컨텐츠 박스 */
#link .s_list .s_list_box {
  display: block;
  overflow: hidden;
  text-align: center;
}

#link .imgBox img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  border-radius: var(--border-radius-xs);
}

/* 제목 */
#link .txtTop {
  display: block;
  font-size: var(--size-xs);
  font-weight: var(--weight-large);
  color: var(--color-black);
  margin-top: 6px;
  text-align: left;
  margin-left: 4px;
}

.txtBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.statBox {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: var(--size-xs);
  color: var(--color-border-gray);
}
.view_icon {
  width: 20px;
  height: 20px;
}
.like_icon,
.star_icon {
  width: 18px;
  height: 18px;
}
.logo_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.logo_item {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--border-radius-s);
  font-size: var(--size-base);
  font-weight: var(--weight-medium);
  color: var(--color-black);
  cursor: pointer;
  text-decoration: none;
  max-width: 460px;
  border: none;
}
.logo_item.google {
  border: 1px solid var(--color-lightGray);
  box-sizing: border-box;
}
.logo_item.naver {
  background-color: #03a94d;
  color: var(--color-white);
}
.logo_item.kakao {
  background-color: #fee500;
}
.logo_item.facebook {
  background-color: #1977f3;
  color: var(--color-white);
}
.logo_item.line {
  background-color: #06c755;
  color: var(--color-white);
  padding: 6px 16px 6px 11px;
}

.logo_item span {
  flex: 1;
  text-align: center;
}
.logo_item img {
  width: 24px;
  height: 24px;
}
.logo_item.line img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
#iframe {
  width: 100%;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

/* 조회수 및 좋아요 공통 스타일 */
.card-stats {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding-left: 0;
  margin-top: 6px;
  font-size: var(--size-xs);
  color: var(--color-gray4);
}

.card-stats .stat-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 24px;
  padding: 4px 8px 4px 6px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--color-lightGray) 48%, var(--color-white));
  color: var(--color-gray4);
  line-height: 1;
}

.card-stats .view_icon,
.card-stats .like_icon,
.card-stats .star_icon {
  width: 14px;
  height: 14px;
}

.card-stats .stat-item.favorite {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card-stats .stat-item.favorite:hover,
.card-stats .stat-item.favorite.active {
  background-color: #fff0f6;
  color: #d94f82;
}

.card-stats .stat-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  font-weight: var(--weight-medium);
  white-space: nowrap;
}

#newYearBannerGrid,
#jegalBannerGrid {
  margin-bottom: 16px;
}
.goog-te-banner-frame {
  display: none !important;
}
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
.goog-te-gadget {
  font-size: 0;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
.goog-te-gadget {
  font-size: 0 !important;
}

.skiptranslate {
  display: none !important;
}
.langSelect {
  height: 30px;
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
}
.grid_3card_row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.time_item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: var(--size-xs);
  font-weight: var(--weight-large);
  text-align: center;
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-xs);
}

.time_img_box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.time_img_box img {
  max-width: 100px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.ganzhi_time_text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.month_card {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-lg);
  font-weight: var(--weight-large);
  color: var(--color-white);
  text-shadow: 0 0 8px rgba(0, 0, 0, 1);
  border-radius: var(--border-radius-xs);
  border: 1px solid var(--color-border-gray);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
}
.month_card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-size: 120%;
  font-size: var(--size-2xl);
}
.grid_2card_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  width: 100%;
}
.grid_2card_item {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-base);
  font-weight: var(--weight-large);
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 0 8px rgba(0, 0, 0, 1);
  border: 1px solid var(--color-border-gray);
  border-radius: var(--border-radius-xs);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
  white-space: pre-wrap;
}
.grid_2card_item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-size: 120%;
  font-size: var(--size-lg);
}

.policy-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border-gray);
  margin-bottom: 20px;
}

.tab-btn {
  padding: 16px;
  border: none;
  background: none;
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
  color: #999;
}

.tab-btn.active {
  color: var(--color-black2);
  border-bottom: 2px solid var(--color-black2);
  margin-bottom: -2px;
}

.policy-container {
  padding: 10px;
  line-height: 1.6;
}

.policy-item {
  margin-bottom: 30px;
}

.policy-item-title {
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
  color: var(--color-black);
}

.policy-item-desc {
  font-size: var(--size-sm);
  color: var(--color-black2);
  /* white-space: pre-wrap;
  word-break: break-all; */
}
.contact-link {
  display: block;
  padding: 16px;
  font-size: var(--size-base);
  background-color: var(--color-boxGray);
  border-radius: var(--border-radius-s);
  text-decoration: none;
  color: var(--color-black2);
  font-weight: var(--weight-medium);
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  margin-bottom: var(--margin-bottom-s);
}

.contact-link:hover {
  background-color: var(--color-border-gray);
}

.dictionarySection {
  display: flex;
  flex-direction: column;
}

.dictionaryIntroBox {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding: 22px 24px;
  margin: 20px 0 24px;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-purple2) 5%, var(--color-white));
  border: 1px solid color-mix(in srgb, var(--color-purple2) 14%, var(--color-border-gray));
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.05);
}

.dictionaryIntroHeading {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.dictionaryIntroText {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.dictionaryIntroText strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-black);
}

.dictionaryIntroText p {
  margin: 0;
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: 1.7;
  word-break: keep-all;
}

.dictionaryControlBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.dictionarySearchLabel {
  color: var(--color-black);
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
}

.dictionarySearchInput {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  color: var(--color-black);
  font-size: var(--size-sm);
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 10px;
  outline: none;
}

.dictionarySearchInput:focus {
  border-color: var(--color-purple2);
  box-shadow: 0 0 0 3px rgba(111, 77, 196, 0.12);
}

.dictionaryList {
  margin-bottom: 18px;
}

.dictionaryHeader {
  width: 100%;
  text-align: left;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.dictionaryHeader .noticeTitleRow {
  flex: 1;
  min-width: 0;
}

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

.dictionaryEmpty {
  padding: 24px;
  color: var(--color-black2);
  font-size: var(--size-sm);
  text-align: center;
  background-color: var(--color-boxGray);
  border-radius: 10px;
}

@media (max-width: 640px) {
  .dictionaryIntroBox {
    align-items: flex-start;
    padding: 16px;
  }

  .dictionaryList {
    margin-bottom: 14px;
  }
}
.icon_circle {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--color-gray2);
}

.noticeGuideBox,
.faqGuideBox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 20px 0 24px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 14%, var(--color-border-gray));
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-purple2) 5%, var(--color-white));
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.05);
}
.noticeGuideIcon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-purple2) 9%, var(--color-white));
  color: var(--color-purple2);
  font-size: 26px;
  line-height: 1;
}

.noticeGuideIcon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.faqGuideText {
  text-align: left;
}

.faqGuideText strong {
  align-self: flex-start;
}

.faqGuideBox {
  align-items: flex-start;
}

.faqGuideHeading {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.faqGuideHeading strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  line-height: 1;
}

.noticeGuideText,
.faqGuideText {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
.noticeGuideText strong,
.faqGuideText strong {
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-black);
}
.noticeGuideText p,
.faqGuideText p {
  margin: 0;
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: 1.7;
  word-break: keep-all;
}
@media (max-width: 640px) {
  .noticeGuideBox,
  .faqGuideBox {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
  }
  .noticeGuideIcon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .noticeGuideText p,
  .faqGuideText p {
    font-size: 13px;
    line-height: 1.65;
  }
}

.noticeList {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--color-border-gray);
}

.noticeItem {
  border-bottom: 1px solid var(--color-border-gray);
  cursor: pointer;
  background: var(--color-white);
}
.no-notice_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  font-size: var(--size-base);
  font-weight: var(--weight-medium);
  color: var(--color-black2);
}

.noticeHeader {
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 44px;
}
.noticeHeader::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  background: url('/img/icons/arrow_down_black.svg') center/contain no-repeat;
  opacity: 0.72;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.noticeItem.active .noticeHeader::after {
  opacity: 1;
  transform: translateY(-50%) rotate(180deg);
}

.noticeTitleRow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.noticeCategoryBadge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 5px 10px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--color-purple2) 12%, var(--color-white));
  color: var(--color-purple2);
  font-size: var(--size-xs);
  line-height: 1.2;
  font-weight: var(--weight-large);
}
.noticeTitle {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: var(--size-base);
  font-weight: var(--weight-large);
  color: var(--color-black);
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}

.noticeDate {
  font-size: var(--size-xs);
  color: var(--color-gray);
}
.noticeContent {
  max-height: 0;
  overflow: hidden;
  background: var(--color-boxGray);
  transition: max-height 0.3s ease-out;
}
.contentInner {
  padding: 20px 16px;
  font-size: var(--size-sm);
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--color-black2);
}

.noticeItem.active .noticeContent {
  max-height: 2000px;
}
@media (max-width: 640px) {
  .noticeHeader {
    padding-right: 36px;
  }
  .noticeHeader::after {
    right: 14px;
    width: 20px;
    height: 20px;
  }
  .noticeTitleRow {
    align-items: center;
    gap: 8px;
  }
  .noticeCategoryBadge {
    min-width: 48px;
    padding: 4px 8px;
  }
  .noticeTitle {
    font-size: var(--size-sm);
  }
}
#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
}

.page-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  background: var(--color-white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn.active {
  background: var(--color-black2);
  color: var(--color-white);
  border-color: var(--color-black2);
  font-weight: bold;
}

.page-btn.move-btn {
  background: var(--color-boxGray);
  color: var(--color-black2);
}

.page-btn[disabled] {
  cursor: default;
  color: var(--color-gray2);
  background: var(--color-border-gray);
  border-color: var(--color-boxGray);
  opacity: 0.5;
}
.page-btn[disabled] img {
  filter: grayscale(1) opacity(0.5);
}
#render_share_area {
  width: 100%;
}
#render_share_area:not(:empty) {
  margin: 30px 0 30px;
}
#render_share_area.shareAreaNoTop:not(:empty) {
  margin-top: 0;
}
.zuyeog_container > #render_share_area.shareAreaNoTop:not(:empty) {
  margin-top: -1.6rem;
}
form > #render_share_area:not(:empty) {
  margin-top: 0;
}
.result_Text_box #render_share_area:not(:empty) {
  margin-bottom: 0;
}
.fortuneCookieMessage #render_share_area:not(:empty) {
  margin-bottom: 0;
}
#render_share_area:not(:empty) + #tip {
  margin-top: 0 !important;
}

.share_btn_box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 16px 16px 0 16px;
  border-top: 1px solid var(--color-border-gray);
}
.share_btn_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray2);
  cursor: pointer;
}
.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal_inner {
  background-color: #fff;
  width: 90%;
  max-width: 320px;
  height: auto;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 120px;
}
.divider {
  width: 100%;
  height: 10px;
  background-color: var(--color-boxGray);
  margin-top: 10px;
  /* margin-bottom: var(--margin-bottom-l); */
}

#iframe {
  touch-action: pan-x pan-y;
}

.divider.bg_white {
  background-color: white;
}
.gae_img {
  width: 100px;
  height: auto;
}

.loading_overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  background-color: var(--color-white);
  gap: 20px;
}

.loading_spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-black);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.guideBox {
  width: 100%;
  padding: 16px 8px;
  background-color: var(--color-light-purple);
  border-radius: var(--border-radius-micro);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guideBox.bg_gray {
  background-color: var(--color-boxGray);
  margin-bottom: 16px;
}
.homeIdentityBox {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 24px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 18%, var(--color-lightGray));
  border-radius: 12px;
  background-color: #fbf8ff;
}
.homeIdentityText {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-purple2);
  font-size: var(--size-sm);
  line-height: 1.65;
  font-weight: var(--weight-large);
  text-align: center;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}
.homeMain .guideBox.bg_gray {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background: linear-gradient(
      120deg,
      color-mix(in srgb, var(--color-purple2) 18%, var(--color-white)) 0%,
      color-mix(in srgb, var(--color-white) 88%, var(--color-light-purple)) 46%,
      color-mix(in srgb, var(--color-light-purple) 68%, var(--color-white)) 100%
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-purple2) 14%, transparent) 0%,
      transparent 38%,
      color-mix(in srgb, var(--color-purple2) 9%, transparent) 100%
    );
  border: none;
  border-radius: 12px;
}
.guideBox_title {
  color: var(--color-purple);
  font-size: var(--size-sm);
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-large);
}
.tojungPrivacyGuide {
  width: 100%;
  padding: 8px;
}
.tojungPrivacyGuide--boxed {
  padding: 12px;
  background-color: var(--color-boxGray);
  border-radius: var(--border-radius-micro);
}
.tojungPrivacyNotice {
  color: var(--color-purple2);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--size-sm);
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-large);
}
.guideBox_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  padding: 0 10px;
}
.homeMain .guideBox.bg_gray .guideBox_content {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0;
}
.homeMain .guideBox.bg_gray .guide_content_title {
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-black);
}
.homeMain .guideBox.bg_gray .guide_content_title span {
  color: inherit;
}
.homeMain .guideBox.bg_gray .guide_content_desc {
  max-width: min(100%, 760px);
  color: var(--color-black2);
  font-size: var(--size-sm);
  word-break: keep-all;
}
.guide_content_title {
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-large);
}
.guide_content_desc {
  color: var(--color-black2);
  font-size: var(--size-sm);
  line-height: var(--size-sm) * 1.6;
  font-weight: var(--weight-regular);
}
.sajuTermMoreLink {
  flex-basis: 100%;
  display: inline-flex;
  justify-content: flex-end;
  margin-top: 6px;
  color: var(--color-purple2);
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  text-decoration: none;
}
.sajuTermMoreLink:hover {
  text-decoration: underline;
}

.blogMoreIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 8px 20px rgba(92, 58, 143, 0.1);
  font-size: 34px;
}

.blogCardGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x;
}

.blogCardGrid::-webkit-scrollbar {
  display: none;
}

.blogCardItem {
  min-width: 0;
}

.blogCardLink {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: var(--border-radius-s);
  box-shadow: 0 6px 18px rgba(37, 16, 69, 0.06);
}

.blogCardLink:focus-visible {
  outline: 2px solid var(--color-purple2);
  outline-offset: 2px;
}

.blogCardThumb {
  display: block;
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  background-color: var(--color-lightGray);
}

.blogCardThumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogCardText {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 16px;
}

.blogCardCategory {
  color: var(--color-purple2);
  font-size: 13px;
  font-weight: var(--weight-large);
}

.blogCardTitle {
  color: var(--color-black);
  font-size: var(--size-sm);
  font-weight: var(--weight-large);
  line-height: 1.45;
  word-break: keep-all;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blogCardDesc {
  color: var(--color-gray4);
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
}

.blogCardMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-gray2);
  font-size: 13px;
}

.blogCardMeta span {
  color: var(--color-purple2);
  font-size: var(--size-lg);
  line-height: 1;
}

.blogMorePanel {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 18%, var(--color-lightGray));
  border-radius: var(--border-radius-l);
  background: linear-gradient(135deg, #fbf8ff 0%, #fff 100%);
}

.blogMoreIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding-bottom: 1px;
  font-size: 27px;
  line-height: 1;
}

.blogMoreText {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  color: var(--color-gray4);
  font-size: 14px;
  line-height: 1.5;
}

.blogMoreText strong {
  color: var(--color-purple2);
  font-size: var(--size-base);
  line-height: 1.35;
  font-weight: var(--weight-black);
}

.blogPostNavLink {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 6px;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-purple2) 8%, var(--color-white));
  color: var(--color-purple2);
  font-weight: var(--weight-large);
  font-size: 12px;
  line-height: 1.4;
  word-break: keep-all;
  text-decoration: none;
  white-space: nowrap;
}

.blogPostNavLink:hover {
  text-decoration: underline;
}

@media screen and (max-width: 760px) {
  .blogCardGrid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72%);
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .blogCardItem {
    scroll-snap-align: start;
  }
}

@media screen and (max-width: 400px) {
  .blogMorePanel {
    align-items: flex-start;
    padding: 16px;
  }

  .blogMorePanel .blogMoreIcon {
    display: none;
  }

  .blogMoreText {
    flex-basis: 100%;
  }

  .blogPostNavLink {
    width: auto;
    justify-content: flex-start;
  }

  .blogCardGrid {
    grid-auto-columns: minmax(180px, 78%);
    gap: 10px;
  }
}

#tip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid rgba(104, 54, 179, 0.12);
  border-radius: var(--border-radius-l);
  background: linear-gradient(180deg, #fbf8ff 0%, var(--color-white) 100%);
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.05);
}
#tip_title {
  color: var(--color-purple);
  font-size: var(--size-base);
  line-height: 1.6;
  font-weight: var(--weight-large);
}
.tip_item {
  font-size: var(--size-sm);
  line-height: 1.7;
}
#tip > span.tip_item {
  margin-left: 0;
  color: var(--color-gray4);
}
#tip > div.tip_item {
  margin-left: 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(104, 54, 179, 0.16);
}
.tip_item_title {
  display: inline;
  margin-bottom: 0;
  font-weight: var(--weight-large);
  color: var(--color-black2);
}
.tip_item_narrative_title {
  display: inline;
  margin-bottom: 0;
  font-size: var(--size-sm);
  line-height: 1.6;
  font-weight: var(--weight-large);
  color: var(--color-black2);
}
#tip > div.tip_item .tip_icon {
  display: inline-block;
  margin-right: 0.35rem;
}
#tip > div.tip_item .tip_item_title + .tip_icon {
  display: none;
}
#tip > div.tip_item .tip_item_desc {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-gray4);
  line-height: 1.75;
}
.sample_button {
  /* padding: 6px 8px;
  background-color: var(--color-light-purple);
  border-radius: var(--border-radius-micro);
  color: var(--color-gray); */
  font-size: var(--size-sm);
  text-decoration: underline;
  color: var(--color-black2);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 카드가 들어올 때 사용할 애니메이션 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 애니메이션을 트리거할 클래스 */
.swipe-next {
  animation: slideInRight 0.4s ease-out;
}

.swipe-prev {
  animation: slideInLeft 0.4s ease-out;
}

@media screen and (min-width: 501px) {
  .bannerScroll {
    grid-auto-columns: 200px;
    overflow-x: auto;
  }
}

@media screen and (max-width: 500px) {
  .bannerScroll {
    grid-auto-columns: 180px;
  }
}

@media screen and (max-width: 400px) {
  .grid_3card_row {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridCardItem {
    gap: 2px;
  }
  .bannerScroll {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 160px;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .card-stats {
    gap: 4px;
  }

  .card-stats .stat-item {
    gap: 3px;
    min-height: 22px;
    padding: 4px 6px 4px 5px;
  }

  .card-stats .view_icon,
  .card-stats .like_icon,
  .card-stats .star_icon {
    width: 13px;
    height: 13px;
  }
}

@media screen and (max-width: 320px) {
  /* html {
    font-size: 56.25%;
  } */
  .card-stats .stat-item {
    gap: 2px;
    padding: 4px 5px;
  }
  .link_button {
    width: 70%;
  }
  .contents_textBox {
    gap: 4px;
  }
}

/* About page */
.aboutSection {
  gap: 0;
  padding-bottom: 24px;
}

.aboutHero {
  width: 100%;
  padding: 28px 30px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 14%, var(--color-border-gray));
  border-radius: 12px;
  background: radial-gradient(circle at 82% 42%, rgba(130, 100, 206, 0.12), transparent 24%),
    color-mix(in srgb, var(--color-purple2) 5%, var(--color-white));
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.05);
  margin-bottom: 22px;
  text-align: center;
}

.aboutHeroBadge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--color-purple2);
  background: var(--color-white);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 24%, var(--color-border-gray));
}

.aboutTitle {
  margin: 0 0 12px;
  font-size: var(--size-2xl);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  color: var(--color-purple3);
  letter-spacing: -0.02em;
}

.aboutHero .aboutLead {
  margin: 0;
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  line-height: 1.75;
  color: var(--color-black2);
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}

.aboutChapter {
  width: 100%;
  margin-bottom: 12px;
}

.aboutChapter .aboutBlock {
  margin-top: 0;
}

.aboutSubheading {
  margin: 0;
  padding: 0;
  font-size: var(--size-base);
  font-weight: var(--weight-black);
  line-height: 1.35;
  color: var(--color-purple2);
  letter-spacing: -0.02em;
}

.aboutChapter--belief .aboutSubheading {
  margin-top: 0;
}

.aboutChapter {
  position: relative;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 10%, var(--color-border-gray));
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: 0 6px 18px rgba(37, 16, 69, 0.04);
}

.aboutChapterHeading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.aboutChapterIcon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-purple2) 8%, var(--color-white));
  color: var(--color-purple2);
}

.aboutChapterIcon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.aboutChapter .aboutBlock {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.aboutBlocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.aboutBlock {
  position: relative;
  margin: 0;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid color-mix(in srgb, var(--color-purple2) 9%, var(--color-border-gray));
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(37, 16, 69, 0.04);
}

.aboutBlock p {
  margin: 0;
  font-size: var(--size-sm);
  line-height: 1.75;
  color: var(--color-black2);
}

.trustSummary {
  margin-bottom: 24px;
}

.aboutBlock--note {
  background: color-mix(in srgb, var(--color-purple2) 4%, var(--color-white));
  border-color: color-mix(in srgb, var(--color-purple2) 14%, var(--color-border-gray));
}

.aboutBlock--closing {
  background: var(--color-white);
  border-color: var(--color-border-gray);
  box-shadow: none;
}

.aboutBlock--closing p {
  color: var(--color-gray4);
  font-size: var(--size-xs);
}
.contactBannerInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 14%, var(--color-border-gray));
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: 0 8px 22px rgba(37, 16, 69, 0.05);
}
.contactTitle {
  align-self: flex-start;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 34%, var(--color-lightGray));
  border-radius: 6px;
  background: color-mix(in srgb, var(--color-purple2) 7%, var(--color-white));
  color: var(--color-purple2);
  font-size: var(--size-xs);
  line-height: 1.35;
  font-weight: var(--weight-black);
}
.contactDesc {
  color: var(--color-gray4);
  font-size: var(--size-sm);
  line-height: 1.65;
  font-weight: var(--weight-regular);
}
.contactBtn {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--color-purple2) 32%, var(--color-lightGray));
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-purple2);
  font-size: var(--size-sm);
  font-weight: var(--weight-large);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contactBtn:hover {
  border-color: var(--color-purple2);
  background: color-mix(in srgb, var(--color-purple2) 5%, var(--color-white));
  transform: translateY(-1px);
}
.contactBtn img {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .aboutHero {
    padding: 20px 16px;
  }
  .aboutSubheading {
    margin-top: 0;
  }
  .aboutChapter {
    padding: 16px;
  }
  .aboutChapterIcon {
    width: 36px;
    height: 36px;
  }
  .aboutChapterIcon img {
    width: 20px;
    height: 20px;
  }
  .aboutBlock {
    padding: 16px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 380px) {
  .aboutHero {
    padding: 18px 16px 20px;
  }
  .aboutTitle {
    font-size: var(--size-xl);
  }
}
