@charset "utf-8";

/* =========================================================
   BASE
========================================================= */
*{ margin:0; padding:0; box-sizing:border-box; }
img{ display:block; border:0; }
a{ color:inherit; text-decoration:none; }

:root{
    --bg:#111111;
    --accent:#ff6d00;

    --stroke: rgba(255,255,255,0.10);
    --dim: rgba(255,255,255,0.55);

    --glassBg: rgba(61, 61, 61, 0.28);
    --glassBorder: rgba(255,255,255,0.14);
    --shadow: 0 10px 30px rgba(0,0,0,0.55);
}

html, body{ height:100%; overflow:hidden; }
body{
    background: var(--bg);
    color:#fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 배경 고정 레이어 */
#page-bg{
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 0;
}

/* =========================================================
   CHAPTER COMMON
========================================================= */
.chapter{
    position: fixed;
    inset: 0;
    z-index: 1;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 620ms ease, visibility 0s linear 620ms;
    background: var(--bg);
}
.chapter.is-active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 420ms ease, visibility 0s linear 0s;
}

.chapter-inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

/* =========================================================
   CHAPTER 1 : SEARCH
========================================================= */
#chapter-1 .hero{ width:100%; text-align:center; }

#chapter-1 .hero-title{
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.1;
}
#chapter-1 .hero-sub{
    margin-top: 12px;
    font-size: 15px;
    color: var(--dim);
}

#chapter-1 .chapter-search-box{
    margin: 32px auto 0;
    width: min(560px, 86vw);
    height: 56px;

    display:flex;
    align-items:center;

    background: rgba(245,245,245,0.92);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    overflow:hidden;
}

#chapter-1 .search-input{
    flex:1;
    height:100%;
    border:0;
    outline:none;
    background: transparent;

    padding: 0 14px 0 18px;
    font-size:16px;
    color:#111;
}
#chapter-1 .search-input::placeholder{ color: rgba(0,0,0,0.55); }

#chapter-1 .search-btn{
    height: 56px;
    width: 64px;
    border: 0;
    background: transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor: pointer;
    color: #777;
    transition: transform .12s ease, filter .2s ease;
}

/* 검색 버튼 이미지 */
#chapter-1 .search-btn.img-btn{
    background: url("/unique/images/search-1.png") no-repeat center;
    background-size: 28px 28px;
    text-indent: -9999px;
    overflow: hidden;
}

#chapter-1 .chapter-search-box:hover .search-btn{
    filter: drop-shadow(0 0 6px rgba(255,109,0,0.35));
    transform: scale(1.06);
}
#chapter-1 .search-btn:active{ transform: scale(.95); }

#chapter-1 .no-result{ margin-top: 18px; color: var(--dim); }

/* =========================================================
   CHAPTER 2 : PYRAMID
========================================================= */
#chapter-2 .chapter-inner{
    max-width: 1200px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap: clamp(10px, 2vh, 22px);
}

#chapter-2 .chapter-desc{ text-align:center; }

#chapter-2 .chapter-title{
    font-size: clamp(22px, 3.2vw, 40px);
    font-weight: 500;
    color: rgba(255,255,255,0.72);
}
#chapter-2 .chapter-title .highlight{
    color: var(--accent);
    font-size: clamp(28px, 4.2vw, 55px);
}
#chapter-2 .chapter-sub{
    margin-top: 8px;
    font-size: clamp(14px, 2vw, 20px);
    color: rgba(255,255,255,0.45);
}

#chapter-2 .tier-wrap{
    position: relative;
    width: 100%;
    height: min(520px, 52vh);
}

#chapter-2 .tier-visual{
    width: min(560px, 60vw);
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
#chapter-2 .tier-visual img{ width:100%; height:auto; }

#chapter-2 .tier-list{
    position:absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);

    width: 260px;
    height: 520px;

    margin:0;
    padding:0;
    list-style:none;
}

#chapter-2 .tier-item{
    position: absolute;
    left: 0;
    width: 100%;
}
#chapter-2 .t1{ top: 10px;  transform: translateX(-60px); }
#chapter-2 .t2{ top: 120px; transform: translateX(-35px); }
#chapter-2 .t3{ top: 235px; transform: translateX(-10px); }
#chapter-2 .t4{ top: 335px; transform: translateX( 15px); }
#chapter-2 .t5{ top: 455px; transform: translateX( 40px); }

#chapter-2 .tier-link{
    display: inline-block;
    width: 100%;
    text-align: left;
    color: rgba(255,255,255,0.65);
    font-size: clamp(14px, 1.6vw, 18px);
    transition: .25s;
}
#chapter-2 .tier-link:hover{ color:#fff; }

#chapter-2 .tier-link.is-active{
    color:#fff;
    font-size: clamp(22px, 3.2vw, 45px);
    font-weight: 600;
    animation: tierPulse 1.2s ease-in-out infinite;
    text-shadow:
            0 0 4px rgba(255,109,0,0.5),
            0 0 10px rgba(255,109,0,0.35);
    transform-origin: left center;
}

@keyframes tierPulse{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.1); }
    100%{ transform:scale(1); }
}

#chapter-2 .tier-bottom{
    margin-top: 42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 18px;
}

#chapter-2 .tier-carline{
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
#chapter-2 .tier-dot{ margin: 0 8px; color: rgba(255,255,255,0.35); }
#chapter-2 .tier-price{ color: var(--accent); font-weight: 700; }

#chapter-2 .tier-search-again{
    width: 360px;
    max-width: calc(100vw - 36px);
    height: 58px;
    border-radius: 12px;

    display:flex;
    align-items:center;
    justify-content:center;

    border: 1px solid var(--accent);
    color:#fff;

    position: relative;
    overflow:hidden;
}
#chapter-2 .tier-search-again::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--accent);

    transform: scaleX(0);
    transform-origin:left;
    transition: transform .45s ease;
    z-index:-1;
}
#chapter-2 .tier-search-again:hover::before{ transform: scaleX(1); }

/* =========================================================
   CHAPTER 3 : RESULT
========================================================= */
#chapter-3 .chapter-inner{
    max-width: 1560px;
    padding: 0 clamp(18px, 3vw, 56px);
}

#chapter-3{
    --grid-gap: 20px;
    --row-h: 188px;
    --grid-h: calc((var(--row-h) * 3) + (var(--grid-gap) * 2));

    --right-gap: 22px;
    --right-btn-h: 60px;
}

#chapter-3 .chapter-inner.result-layout{
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    grid-template-rows: auto var(--grid-h);

    column-gap: 52px;
    row-gap: 22px;
    align-items: start;

    transform: translateY(-10px);
    opacity: 1;
    transition: opacity 320ms ease, transform 320ms ease;
}

#chapter-3 .result-left{ display: contents; }
#chapter-3 .result-right{ grid-column: 2; grid-row: 2; }

#chapter-3 .result-head{ grid-column: 1; grid-row: 1; }

#chapter-3 .brand-mini{
    font-size: 11px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}

#chapter-3 .result-title{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

#chapter-3 .result-bar{
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
}

#chapter-3 .card-grid{
    grid-column: 1;
    grid-row: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
    grid-auto-rows: var(--row-h);

    transition: opacity .35s ease, transform .35s ease;
}

#chapter-3 .car-card{
    height: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;

    padding: 12px 12px 10px;
    text-align: center;

    display:flex;
    flex-direction: column;
    justify-content: flex-start;

    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
#chapter-3 .car-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.14);
}

#chapter-3 .car-thumb{
    height: 130px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
#chapter-3 .car-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#chapter-3 .car-name{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255,255,255,0.80);

    flex: 1 1 auto;
    display:flex;
    align-items: flex-end;
    justify-content: center;
}

/* 오른쪽 영역 */
#chapter-3 .result-right{
    height: var(--grid-h);
    display: flex;
    flex-direction: column;
    gap: var(--right-gap);
    margin-top: 0;
}

#chapter-3 .result{
    width: 100%;
    height: calc(var(--grid-h) - var(--right-btn-h) - var(--right-gap));
    perspective: 1000px;
}

/* =========================================================
   CARD SHELL (3D/유리/face) - 레이아웃은 아래 CARD UI에서 통일
========================================================= */
#chapter-3 .result-card,
.pre-result-overlay .result-card,
.fly-clone .result-card{
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: opacity .25s ease;
}

#chapter-3 .result-card .card-inner,
.pre-result-overlay .card-inner,
.fly-clone .card-inner{
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

#chapter-3 .result-card .card-face,
.pre-result-overlay .card-face,
.fly-clone .card-face{
    position: absolute;
    inset: 0;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    background: var(--glassBg);
    border: 1px solid var(--glassBorder);
    box-shadow: var(--shadow);

    overflow: hidden;
}
#chapter-3 .result-card .card-face{ border-radius: 10px; padding: 26px; }
.pre-result-overlay .card-face,
.fly-clone .card-face{ border-radius: 18px; padding: 26px; }

#chapter-3 .result-card .card-face::after,
.pre-result-overlay .card-face::after,
.fly-clone .card-face::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius: inherit;
    pointer-events:none;
    z-index:1;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0) 45%),
            radial-gradient(1200px 500px at 20% 10%, rgba(255,255,255,0.10), transparent 55%);
    opacity: 0.55;
}
#chapter-3 .result-card .card-face > *,
.pre-result-overlay .card-face > *,
.fly-clone .card-face > *{
    position: relative;
    z-index: 2;
}

#chapter-3 .result-card .card-front,
.pre-result-overlay .card-front,
.fly-clone .card-front{ transform: rotateY(0deg); }

#chapter-3 .result-card .card-back,
.pre-result-overlay .card-back,
.fly-clone .card-back{
    transform: rotateY(180deg);
    background: var(--accent);
    border-color: rgba(255,255,255,0.18);
}

#chapter-3 .result-card .card-back img,
.pre-result-overlay .card-back img,
.fly-clone .card-back img{
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    max-width: 240px;
    width: 60%;
    height: auto;
    opacity: 0.95;
}

/* mismatch 텍스트 위치(HTML에 is-mismatch가 있음) */
#chapter-3 .result-card.is-mismatch .result-text:first-of-type{ margin-top: 30px; }
#chapter-3 .result-card.is-mismatch .result-text:last-of-type{ margin-top: auto; }

/* 결과카드 클릭 */
#chapter-3 .result-card.is-clickable { cursor: pointer; }
#chapter-3 .result-card.is-clickable:hover { transform: translateY(-2px); }

/* reset 버튼 */
#chapter-3 .reset-btn.back-to-start{
    width: 100%;
    display:block;
    height: var(--right-btn-h);
    line-height: var(--right-btn-h);

    box-sizing: border-box;
    border: 2px solid var(--accent);
    color:#fff;
    text-align:center;
    text-decoration: none;

    position: relative;
    overflow:hidden;
    margin-top: auto;
}
#chapter-3 .reset-btn.back-to-start::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--accent);

    transform: scaleX(0);
    transform-origin:left;
    transition: transform .45s ease;
    z-index:-1;
}
#chapter-3 .reset-btn.back-to-start:hover::before{ transform: scaleX(1); }

/* LIST FADE */
#chapter-3 .card-grid.is-prehide{
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
#chapter-3 .card-grid.is-fadein{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* fly 동안 원본 카드 숨김 */
#chapter-3 .result-card.is-hide-during-fly{ opacity: 0; }

/* preSpin 중 결과 레이아웃 숨김(좌표 계산 가능하도록 opacity로만) */
html.has-preSpin #chapter-3 .chapter-inner.result-layout{
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
}

/* =========================================================
   fly clone
========================================================= */
.fly-clone{
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    left: 0;
    top: 0;
    transform-origin: top left;
}

/* 이동 중 버튼 숨김(1회만 유지) */
.is-flying .see-more-btn-all{ display:none !important; }

/* =========================================================
   PRE-RESULT OVERLAY (스핀 카드)
========================================================= */
.pre-result-overlay{
    position: fixed;
    inset: 0;
    z-index: 9999;

    display:flex;
    align-items:center;
    justify-content:center;

    background: #111;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}
.pre-result-overlay.is-show{
    opacity: 1;
    pointer-events: auto;
}

/* 스핀 카드 크기 */
.pre-result-overlay .result-card{
    width: 420px;
    height: 520px;
    perspective: 1000px;
}
.pre-result-overlay .card-face{ padding: 34px; }

/* 스핀 카드에서는 버튼 클릭 막기 */
.pre-result-overlay .see-more-btn{ pointer-events: none !important; }

/* =========================================================
   CARD UI (공통) - 결과/스핀/이동(fly) 모두 동일 레이아웃
   ✅ 여기만 만지면 3개 상태가 같이 바뀜
========================================================= */
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .card-front{
    display:flex;
    flex-direction:column;
}

/* 제목 */
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card h3{
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .02em;
}

/* 이미지 */
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .result-image{
    width: 100%;
    max-width: 320px;
    height: 220px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin: 18px auto 0;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .result-image img{
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,0.65));
    transform: translateY(0);
}

/* 텍스트(이미지 아래) */
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .result-text{
    margin-top: 14px;
    text-align: center;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .result-text b{
    display:block;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .result-rank-name{
    color: var(--accent);
    font-weight: 900;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .carName{
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.92);
}

/* 버튼(항상 아래) */
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .see-more-btn-all{
    margin-top: auto;
    margin-bottom: 10px;
    display:flex;
    justify-content:center;
    width: 100%;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .see-more-btn{
    position: relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    box-sizing:border-box;
    white-space:nowrap;

    padding: 14px 34px;
    min-width: 260px;
    height: 58px;

    border: 2px solid var(--accent);
    background: rgba(0,0,0,0.35);
    color:#fff;

    font-size: 16px;
    line-height: 1;
    text-decoration:none;
    overflow:hidden;

    transition: transform .2s ease, color .3s ease, background .3s ease, border-color .3s ease;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .see-more-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin:left;
    transition: transform .45s ease;
    z-index:-1;
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .see-more-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
}
:where(#chapter-3, .pre-result-overlay, .fly-clone) .result-card .see-more-btn:hover::before{
    transform: scaleX(1);
}

/* ✅ 스핀 카드에서 이미지가 너무 커 보이면 여기만 조절 */
.pre-result-overlay .result-image{
    height: 200px;
    margin-top: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px){
    #chapter-3 .chapter-inner.result-layout{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 0;
        row-gap: 22px;
        transform: none;
    }

    #chapter-3 .result-head{ grid-column: 1; grid-row: 1; }

    #chapter-3 .card-grid{
        grid-column: 1; grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #chapter-3 .result-right{
        grid-column: 1;
        grid-row: 3;

        height: auto;
        max-width: 520px;
        margin: 0 auto;
        justify-self: center;
    }

    #chapter-3 .result{ height: auto; max-width: 520px; margin: 0 auto; }
    #chapter-3 .reset-btn.back-to-start{ max-width: 520px; margin: 0 auto; }
}

@media (max-width: 560px){
    #chapter-3 .card-grid{ grid-template-columns: 1fr; }
}

/* ===========================
   FIX: 스핀(overlay) 카드만 비율 조정
   (이미지 너무 큰 문제 해결)
=========================== */

/* 제목은 좌상단 유지 */
.pre-result-overlay .result-card h3{
    align-self: flex-start;
}

/* 텍스트(“4TIER 입니다!”/차량명) 블록을 조금 아래로 */
.pre-result-overlay .result-card .result-text{
    margin-top: 28px !important;   /* 기존 14~16보다 내려줌 */
}

/* 이미지 박스 자체를 줄이고, 위쪽 간격도 조정 */
.pre-result-overlay .result-card .result-image{
    height: 170px !important;      /* ✅ 핵심: 박스 높이 축소 */
    max-width: 280px !important;   /* ✅ 핵심: 박스 폭 축소 */
    margin-top: 18px !important;
}

/* 이미지 자체도 더 작게 */
.pre-result-overlay .result-card .result-image img{
    width: 88% !important;         /* ✅ 핵심: 이미지 폭 축소 */
    max-height: 170px !important;
    transform: translateY(0) !important;
}

/* 버튼은 아래 고정 유지 */
.pre-result-overlay .result-card .see-more-btn-all{
    margin-top: auto !important;
}

/* =========================
   FIX: overlay에서 텍스트를 더 아래로
   - 이미지 아래 공간을 늘리고
   - 텍스트는 버튼 바로 위로 붙게
========================= */

/* overlay 카드 앞면을 확실히 column + 전체 높이 사용 */
.pre-result-overlay .result-card .card-front{
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* 이미지 영역은 위쪽에 고정 + 아래 여백 확보 */
.pre-result-overlay .result-card .result-image{
    margin-top: 18px !important;
    margin-bottom: 40px !important;   /* ✅ 이게 핵심: 텍스트를 아래로 밀어줌 */
}

/* 텍스트는 버튼 바로 위에 붙게 */
.pre-result-overlay .result-card .result-text{
    margin-top: 0 !important;
    margin-bottom: 18px !important;   /* 버튼과 간격 */
}

/* 버튼은 맨 아래 고정 */
.pre-result-overlay .result-card .see-more-btn-all{
    margin-top: auto !important;
}

/* =========================================================
   ✅ FINAL FIX: PRE-RESULT OVERLAY(스핀 카드) 레이아웃 정리본
   - 제목: 위
   - 이미지: 크게 중앙
   - 텍스트: 아래(버튼 바로 위)
   - 버튼: 맨 아래 고정
========================================================= */

/* overlay 카드 앞면을 column + full height로 고정 */
.pre-result-overlay .result-card .card-front{
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 제목은 위쪽 유지 */
.pre-result-overlay .result-card h3{
    align-self: flex-start;
}

/* ✅ 이미지 크게 중앙 */
.pre-result-overlay .result-card .result-image{
    width: 100%;
    max-width: 360px;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 18px auto 0;
}

/* 이미지 자체 */
.pre-result-overlay .result-card .result-image img{
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ✅ 텍스트를 아래로 밀어서 버튼 위에 배치 */
.pre-result-overlay .result-card .result-text{
    margin-top: auto;      /* 핵심: 위 공간을 다 먹고 아래로 내려감 */
    margin-bottom: 14px;   /* 버튼과 간격 */
    text-align: center;
}

/* 버튼은 맨 아래 고정(공통 스타일 유지 + 안전장치) */
.pre-result-overlay .result-card .see-more-btn-all{
    margin-top: 0;
    margin-bottom: 10px;
}

/* ==========================================
   ✅ FIX: 스핀(overlay)에서 요소 순서 강제
   (텍스트가 위로 올라가는 문제 해결)
========================================== */

.pre-result-overlay .result-card .card-front{
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* 제목(좌상단) */
.pre-result-overlay .result-card h3{
    order: 1 !important;
    align-self: flex-start;
}

/* ✅ 이미지가 텍스트보다 먼저 오게 */
.pre-result-overlay .result-card .result-image{
    order: 2 !important;

    width: 100%;
    max-width: 360px;
    height: 260px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin: 18px auto 0 !important;
}

.pre-result-overlay .result-card .result-text{
    order: 3 !important;

    margin-top: 14px !important;   /* 이미지 아래 간격 */
    margin-bottom: 14px !important;
    text-align: center;
}

.pre-result-overlay .result-card .see-more-btn-all{
    order: 4 !important;

    margin-top: auto !important;
    margin-bottom: 10px !important;
}

