/* =========================================================
   Raven - main.css
   HTML별로 정리한 버전
   1) COMMON
   2) INDEX.HTML
   3) SEARCH.HTML
   4) PLACE.HTML
   5) MYGANGNEUNG.HTML
   6) EXPORT IMAGE
========================================================= */


/* =========================================================
   1. COMMON - 모든 HTML 공통
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   Header
========================= */

.header {
    height: 72px;
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;

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

.logo {
    font-size: 25px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 15px;
}


/* =========================================================
   2. INDEX.HTML
   - hero / 검색창 / 기존 인기 목적지
   - 추천 코스 / 추천 장소 / 서비스 장점
========================================================= */
/*
Hero
========================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 430px;

    background:
            url("/images/mainImage.png")
            center 45% / cover no-repeat;

    overflow: hidden;
}


/* 글자가 잘 보이도록 왼쪽에 밝은 그라데이션 */
.hero-overlay {
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(239, 248, 255, 0.97) 0%,
                    rgba(239, 248, 255, 0.90) 38%,
                    rgba(239, 248, 255, 0.45) 65%,
                    rgba(239, 248, 255, 0.08) 100%
            );
}


.hero-inner {
    position: relative;
    z-index: 1;

    max-width: 1200px;
    min-height: 430px;

    margin: 0 auto;
    padding: 55px 20px 50px;

    display: flex;
    align-items: center;
}


.hero-content {
    width: 680px;
    max-width: 100%;
}


.hero-sub-title {
    margin-bottom: 10px;

    font-size: 22px;
    font-weight: 600;

    color: #161616;

    word-break: keep-all;
}


.hero h1 {
    margin: 0 0 28px;

    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: -1.5px;

    color: #111111;

    word-break: keep-all;
}


.hero h1 span {
    color: #1268f3;
}


/* =========================
   Hero 검색창
========================= */

.search-box {
    width: 660px;
    max-width: 100%;
    height: 64px;

    margin: 0;

    display: flex;
    align-items: center;

    padding: 6px;

    background: #ffffff;

    border: 1px solid rgba(18, 104, 243, 0.15);
    border-radius: 13px;

    box-shadow:
            0 8px 25px rgba(54, 120, 210, 0.14);
}


.search-box input {
    flex: 1;

    height: 100%;

    padding: 0 18px;

    border: none;
    outline: none;

    background: transparent;

    font-size: 16px;

    color: #222222;
}


.search-box input::placeholder {
    color: #999999;
}


.search-box button {
    width: 58px;
    height: 52px;

    flex-shrink: 0;

    border: none;
    border-radius: 11px;

    background: #0867f2;
    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    transition: 0.2s ease;
}


.search-box button:hover {
    background: #0056d8;
    transform: translateY(-1px);
}


/* =========================
   Hero 인기 검색어
========================= */

.hero-keywords {
    margin-top: 16px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.hero-keywords a {
    padding: 9px 15px;

    border-radius: 999px;

    background: rgba(226, 239, 255, 0.95);

    color: #1565d8;

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s ease;
}


.hero-keywords a:hover {
    background: #1268f3;
    color: #ffffff;
}

/*Hero쪽 반응형*/
@media (max-width: 900px) {

    .hero {
        min-height: 400px;
    }

    .hero-inner {
        min-height: 400px;
    }

    .hero-content {
        width: 620px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-sub-title {
        font-size: 19px;
    }
}


@media (max-width: 600px) {

    .hero {
        min-height: 390px;

        background-position: 65% center;
    }

    .hero-overlay {
        background: rgba(239, 248, 255, 0.9);
    }

    .hero-inner {
        min-height: 390px;
        padding: 45px 20px;
    }

    .hero-sub-title {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .search-box {
        height: 58px;
    }

    .search-box button {
        width: 52px;
        height: 46px;
    }

    .hero-keywords a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* =========================
   공통 Section
========================= */

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.section-header span {
    font-size: 14px;
    color: #777;
}


/* =========================
   인기 목적지
========================= */

.place-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

}

.place-card {
    min-height: 180px;
    padding: 20px;

    border: 1px solid #e5e5e5;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.place-card img {
    width: 250px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    text-align: center;
    flex-shrink: 0;
}

.place-card span {
    font-size: 13px;
    color: #999;
}

.place-card h3 {
    margin-top: 15px;
}

.place-card p {
    font-size: 14px;
    color: #777;
}


/* =========================
   주변 추천
========================= */

.recommendation {
    border-top: 1px solid #eeeeee;
}

.recommend-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.recommend-box {
    min-height: 200px;

    padding: 30px;

    border: 1px solid #e5e5e5;
    border-radius: 14px;
}

.recommend-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.recommend-box p {
    color: #888;
    font-size: 14px;
}


/* =========================
   코스 생성
========================= */

.course-section {
    padding: 90px 20px;

    text-align: center;

    border-top: 1px solid #eeeeee;
}

.course-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.course-button {
    padding: 16px 35px;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    cursor: pointer;
}


/* =========================
   반응형
========================= */

@media (max-width: 900px) {

    .place-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {

    .nav {
        display: none;
    }

    .place-list {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 34px;
    }
}

/* ==================================================
   INDEX - 추천 코스 / 추천 장소
================================================== */

.main-recommend-section {
    max-width: 1380px;
    margin: -10px auto 0;
    padding: 25px 24px 70px;
}


/* =========================
   전체 2열
========================= */

.recommend-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;

    padding: 28px;

    background: #ffffff;

    border-radius: 26px;

    box-shadow:
            0 10px 40px
            rgba(24, 85, 160, 0.08);
}


/* =========================
   공통 제목
========================= */

.panel-title {
    display: flex;
    align-items: baseline;
    gap: 20px;

    margin-bottom: 22px;
}


.panel-title h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.7px;
}


.panel-title p {
    color: #888888;
    font-size: 13px;
}


/* =========================
   왼쪽 코스
========================= */

.course-panel {
    min-width: 0;
}


.selected-destination {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    margin-bottom: 14px;

    background: #f5f9ff;

    border-radius: 15px;
}


.destination-icon {
    font-size: 23px;
}


.selected-destination strong {
    display: block;

    margin-bottom: 3px;

    font-size: 18px;
}


.selected-destination span {
    color: #999999;
    font-size: 12px;
}


/* =========================
   상단 코스 카드
========================= */

.course-summary {
    display: grid;

    grid-template-columns:
            1fr 35px
            1fr 35px
            1fr;

    align-items: center;

    padding: 18px;

    background: #fafcff;

    border-radius: 18px;
}


.summary-card {
    min-width: 0;

    padding: 15px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e8edf5;
    border-radius: 15px;
}


.summary-card.destination {
    background: #fffafa;
    border-color: #ffdede;
}


.summary-label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;
    font-weight: 700;
}


.summary-label.blue {
    color: #1670f5;
}


.summary-label.red {
    color: #f14f4f;
}


.summary-card strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}


.summary-card h3 {
    margin-bottom: 12px;

    font-size: 15px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.summary-card img {
    width: 100%;
    height: 105px;

    object-fit: cover;

    display: block;

    border-radius: 10px;
}


.course-arrow {
    text-align: center;

    font-size: 25px;

    color: #5072a0;
}


/* =========================
   타임라인
========================= */

.course-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 15px;
    padding: 18px 10px 12px;

    background: #fafcff;

    border-radius: 18px;
}


.course-timeline::before {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;

    top: 50px;

    height: 2px;

    background: #dce4ef;
}


.timeline-item {
    position: relative;
    z-index: 1;

    text-align: center;

    padding: 0 5px;
}


.time {
    display: block;

    margin-bottom: 7px;

    color: #555555;

    font-size: 12px;
}


.active-time {
    color: #176df6;
    font-weight: 700;
}


.timeline-dot {
    width: 23px;
    height: 23px;

    margin: 0 auto 10px;

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

    background: #ffffff;

    border: 3px solid;

    border-radius: 50%;

    font-size: 0;
}


.timeline-dot.green {
    border-color: #18b876;
}


.timeline-dot.orange {
    border-color: #ff8b23;
}


.timeline-dot.blue {
    border-color: #1c74f7;
}


.timeline-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
}


.timeline-item p {
    color: #999999;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================
   오른쪽 추천 장소
========================= */

.place-panel {
    min-width: 0;
}


.recommended-place-list {
    overflow: hidden;

    background: #fafcff;

    border-radius: 18px;
}


.recommended-place {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 13px 16px;

    border-bottom: 1px solid #e9edf3;

    transition: 0.2s ease;
}


.recommended-place:last-child {
    border-bottom: none;
}


.recommended-place:hover {
    background: #f2f7ff;
}


.recommended-place img {
    width: 115px;
    height: 72px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 10px;
}


.recommended-place-info {
    min-width: 0;
}


.recommended-place-info h3 {
    margin-bottom: 8px;

    font-size: 16px;
}


.recommended-place-info h3 span {
    display: inline-block;

    margin-left: 5px;

    padding: 3px 6px;

    color: #1670f5;

    background: #eaf3ff;

    border-radius: 5px;

    font-size: 10px;
}


.recommended-place-info p {
    overflow: hidden;

    color: #888888;

    font-size: 12px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* ==================================================
   서비스 장점
================================================== */

.service-benefits {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 22px;
}


.benefit-card {
    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px;

    border-radius: 18px;
}


.benefit-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.7);

    font-size: 30px;
    font-weight: 300;
}


.benefit-card h3 {
    margin-bottom: 7px;

    font-size: 17px;
}


.benefit-card p {
    font-size: 12px;
    line-height: 1.6;

    color: #555555;
}


/* 카드 색상 */

.benefit-blue {
    background: #f0f7ff;
}

.benefit-blue h3,
.benefit-blue .benefit-icon {
    color: #166ee8;
}


.benefit-green {
    background: #f0fbf6;
}

.benefit-green h3,
.benefit-green .benefit-icon {
    color: #16a269;
}


.benefit-orange {
    background: #fff8ec;
}

.benefit-orange h3,
.benefit-orange .benefit-icon {
    color: #ff890e;
}


.benefit-purple {
    background: #f8f2ff;
}

.benefit-purple h3,
.benefit-purple .benefit-icon {
    color: #904fe5;
}


/* =========================
   반응형
========================= */

@media (max-width: 1050px) {

    .recommend-layout {
        grid-template-columns: 1fr;
    }


    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .main-recommend-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .recommend-layout {
        padding: 18px;
    }


    .panel-title {
        display: block;
    }


    .panel-title h2 {
        margin-bottom: 6px;
    }


    .course-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }


    .course-arrow {
        transform: rotate(90deg);
    }


    .course-timeline {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .course-timeline::before {
        display: none;
    }


    .service-benefits {
        grid-template-columns: 1fr;
    }

}

/*메인쪽 끝*/


/* =========================================================
   3. SEARCH.HTML
   - 검색 결과
========================================================= */
/*
검색 결과 페이지
========================= */

.search-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 20px;
}

.search-top {
    margin-bottom: 40px;
}

.search-top .search-box {
    margin: 25px 0 0;
}

.search-top h1 {
    font-size: 32px;
    margin-bottom: 25px;
}

.result-section {
    border-top: 1px solid #eeeeee;
}

.result-item {
    min-height: 90px;
    padding: 20px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eeeeee;
}

.result-item:hover {
    background: #fafafa;
}

.result-info h2 {
    font-size: 19px;
    margin-bottom: 8px;
}

.result-info p {
    font-size: 14px;
    color: #777;
}

.arrow {
    font-size: 20px;
    color: #aaa;
}
/* =========================


/* =========================================================
   4. PLACE.HTML
   - 장소 상세
   - 카카오 지도
   - 방문 전/후 추천
   - 선택
   - 코스 생성
   - 로딩 팝업
========================================================= */
/*
장소 상세 페이지
========================= */

.place-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}


/* 장소 제목 */

.place-header {
    margin-bottom: 30px;
}

.place-label {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #999;
}

.place-header h1 {
    margin-bottom: 10px;

    font-size: 42px;
    line-height: 1.2;
}

.place-address {
    font-size: 15px;
    color: #777;
}


/* =========================
   지도
========================= */

.map-section {
    margin-bottom: 80px;
}

#map {
    width: 100%;
    height: 520px;

    border-radius: 18px;
    overflow: hidden;

    border: 1px solid #eeeeee;
}


/* =========================
   목적지 전후 추천
========================= */

.route-section {
    padding-top: 10px;
}

.route-title {
    margin-bottom: 35px;
}

.route-title h2 {
    margin-bottom: 10px;

    font-size: 30px;
}

.route-title p {
    font-size: 15px;
    color: #777;
}


/* 전체 3열 */

.route-flow {
    display: grid;

    grid-template-columns: 1fr 260px 1fr;

    gap: 25px;

    align-items: stretch;
}


/* 방문 전 / 후 */

.route-column {
    min-width: 0;
}

.route-column-title {
    margin-bottom: 18px;
}

.route-column-title span {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #999;
}

.route-column-title h3 {
    font-size: 21px;
}


/* 추천 목록 */

.route-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.route-item {
    min-height: 95px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border: 1px solid #e8e8e8;
    border-radius: 14px;

    background: #ffffff;

    transition:
            border-color 0.2s,
            background 0.2s;
}

.route-item:hover {
    background: #fafafa;
    border-color: #d8d8d8;
}

.route-type {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    color: #999;
}

.route-item h4 {
    font-size: 16px;
    font-weight: 600;
}

.route-arrow {
    flex-shrink: 0;

    font-size: 18px;
    color: #aaa;
}

.place-count {
    position: absolute;
    top: 14px;
    left: 14px;

    min-width: 30px;
    height: 30px;
    padding: 0 10px;

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

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);

    color: #000000;
    font-size: 14px;
    font-weight: 700;

    z-index: 2;
}

.place-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #222;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    text-align: center;

    width: 100%;
}

/* =========================
   핵심 목적지
========================= */

.route-destination {
    min-height: 240px;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid #dddddd;
    border-radius: 16px;

    background: #fafafa;
}

.destination-label {
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #999;
}

.destination-point {
    margin-bottom: 16px;

    font-size: 20px;
}

.route-destination h3 {
    margin-bottom: 8px;

    font-size: 23px;
}

.route-destination p {
    max-width: 200px;

    font-size: 13px;
    line-height: 1.5;

    color: #888;
}


/* =========================
   코스 생성
========================= */

.place-course-section {
    margin-top: 80px;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid #eeeeee;
}

.place-course-section h2 {
    margin-bottom: 8px;

    font-size: 24px;
}

.place-course-section p {
    font-size: 14px;
    color: #777;
}


/* =========================
   상세 페이지 반응형
========================= */

@media (max-width: 900px) {

    .place-header h1 {
        font-size: 36px;
    }

    #map {
        height: 420px;
    }

    .route-flow {
        grid-template-columns: 1fr;
    }

    .route-destination {
        min-height: 180px;
    }

    .place-course-section {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .place-container {
        padding-top: 40px;
    }

    .place-header h1 {
        font-size: 31px;
    }

    #map {
        height: 340px;
        border-radius: 12px;
    }

    .route-title h2 {
        font-size: 25px;
    }

    .place-course-section {
        padding: 30px 0;
    }
}

/*2글자 팝업*/
.toast-message {
    position: fixed;

    top: 90px;
    left: 50%;

    transform: translateX(-50%);

    padding: 12px 20px;

    background: #222;
    color: #fff;

    font-size: 14px;

    border-radius: 10px;

    z-index: 1000;
}

/*슬라이드 디자인*/
.place-slider {
    position: relative;
}

.place-window {
    overflow: hidden;
    width: 100%;
}

.place-list {
    display: flex;

    /* 한 번 넘길 때 정확히 전체 너비만큼 */
    transition: transform 0.45s ease;
}

.place-card {
    /*
       핵심
       한 페이지에 정확히 4개
    */
    flex: 0 0 calc(100% / 4);

    box-sizing: border-box;
    padding: 0 8px;

    position: relative;
}

.place-card img {
    width: 100%;
    height: 220px;

    /* 이미지 안 깨지고 비율 유지 */
    object-fit: cover;

    display: block;
    border-radius: 18px;
}

.place-card h3 {
    margin-top: 10px;
    font-size: 16px;
}

.rank {
    position: absolute;
    top: 12px;
    left: 20px;

    z-index: 2;

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-weight: 700;
}
.slide-btn {
    position: absolute;
    top: 45%;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

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

.slide-btn:hover {
    transform: scale(1.08);
}

.slide-btn.prev {
    left: -20px;
}

.slide-btn.next {
    right: -20px;
}


/* 목적지 전 후 */
.route-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.route-image {
    width: 180px;
    height: 110px;

    object-fit: cover;
    border-radius: 10px;

    flex-shrink: 0;
}

.route-text {
    min-width: 0;
}

.route-text h4 {
    margin: 0;
}

.destination-image {
    width: 100%;
    height: 130px;
}

/*place로딩*/
.course-popup {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);

    z-index: 9999;

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

.course-popup.active {
    display: flex;
}

.course-popup-box {
    width: 380px;
    padding: 40px 30px;

    background: #ffffff;
    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    animation: popupShow 0.25s ease;
}

.car-area {
    width: 180px;
    height: 55px;

    margin: 0 auto 20px;

    position: relative;
    overflow: hidden;
}

.car {
    position: absolute;
    left: 0;

    font-size: 38px;

    animation: carRunning 1.2s ease-in-out infinite alternate;
}

.course-popup-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.course-popup-box p {
    font-size: 14px;
    color: #777;
}

@keyframes carRunning {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(125px);
    }
}

@keyframes popupShow {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* places.html에서 div 선택한거 */
.route-item {
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.route-item.selected {
    background: #eef6ff;
    border-color: #b9d9ff;
}

.route-item.selected:hover {
    background: #eef6ff;
    border-color: #b9d9ff;
}

/*
 * 위 블록은 기존 place.html 스타일.
 * 아래 FINAL DESIGN OVERRIDE가 최종 디자인과 모바일 레이아웃을 덮어쓴다.
 */

/* =========================================================
   PLACE.HTML - FINAL DESIGN OVERRIDE
   기존 place.html 구조는 그대로 두고 마지막에 덮어쓰는 최종 스타일
========================================================= */

.place-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 20px 90px;
}

/* 선택한 목적지 상단 */
.place-header {
    position: relative;
    overflow: hidden;

    margin-bottom: 28px;
    padding: 34px 38px;

    border-radius: 22px;

    background:
            linear-gradient(
                    90deg,
                    rgba(242, 248, 255, 0.98) 0%,
                    rgba(242, 248, 255, 0.92) 45%,
                    rgba(242, 248, 255, 0.55) 70%,
                    rgba(242, 248, 255, 0.25) 100%
            ),
            url("/images/mainImage.png") center 50% / cover no-repeat;
}

.place-header h1 {
    position: relative;
    z-index: 1;

    margin-bottom: 9px;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -1.2px;

    word-break: keep-all;
}

.place-address {
    position: relative;
    z-index: 1;

    font-size: 14px;
    line-height: 1.5;
    color: #687588;
}

/* 지도 */
.map-section {
    margin-bottom: 55px;
}

.map-section #map {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border: none;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(43, 91, 150, 0.10);
}

/* 주변 추천 전체 박스 */
.route-section {
    padding: 32px;

    border: 1px solid #e7eef7;
    border-radius: 24px;

    background: #fbfdff;

    box-shadow: 0 8px 30px rgba(52, 100, 160, 0.06);
}

.route-title {
    margin-bottom: 32px;
}

.route-title h2 {
    margin-bottom: 10px;

    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -0.7px;

    word-break: keep-all;
}

.route-title h2 span {
    color: #1268f3;
}

.route-title p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;

    word-break: keep-all;
}

/* 방문 전 / 핵심 목적지 / 방문 후 */
.route-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);

    gap: 25px;

    align-items: stretch;
}

.route-column {
    min-width: 0;
}

.route-column-title {
    margin-bottom: 18px;
}

.route-column-title span {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #1268f3;
}

.route-column-title h3 {
    font-size: 21px;
    font-weight: 800;
}

/* 추천 카드 목록 */
.route-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.route-item {
    width: 100%;
    min-width: 0;
    min-height: 130px;

    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    cursor: pointer;

    border: 1px solid #e5edf6;
    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 4px 14px rgba(50, 90, 140, 0.04);

    transition:
            border-color 0.2s ease,
            background 0.2s ease,
            box-shadow 0.2s ease;
}

.route-item:hover {
    border-color: #bcd6fa;
    background: #f8fbff;
}

.route-item.selected,
.route-item.selected:hover {
    border-color: #74aef8;
    background: #eef6ff;

    box-shadow: 0 0 0 2px rgba(18, 104, 243, 0.08);
}

.route-content {
    min-width: 0;
    flex: 1;

    display: flex;
    align-items: center;

    gap: 14px;
}

.route-image {
    width: 150px;
    height: 100px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 10px;
}

.route-text {
    min-width: 0;
    flex: 1;
}

.route-type {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;

    color: #8a96a8;
}

.route-text h4 {
    margin: 0 0 8px;

    overflow: hidden;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.route-arrow {
    flex-shrink: 0;

    padding: 7px 10px;

    border-radius: 8px;

    background: #eef5ff;

    color: #1268f3;

    font-size: 12px;
    font-weight: 700;
}

/* 핵심 목적지 */
.route-destination {
    min-width: 0;
    min-height: 260px;

    padding: 24px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid #b9d9ff;
    border-radius: 16px;

    background: linear-gradient(180deg, #f4f9ff, #ffffff);

    box-shadow: 0 8px 24px rgba(38, 101, 180, 0.08);
}

.destination-label {
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #1268f3;
}

.destination-image-wrap {
    width: 100%;
}

.route-destination .destination-image {
    width: 100%;
    height: 150px;

    margin-bottom: 15px;

    object-fit: cover;

    border-radius: 12px;
}

.route-destination h3 {
    width: 100%;

    margin-bottom: 8px;

    overflow: hidden;

    font-size: 20px;
    line-height: 1.35;

    color: #172033;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.route-destination p {
    max-width: 100%;

    font-size: 12px;
    line-height: 1.5;

    color: #888;

    word-break: keep-all;
}

/* 코스 생성 */
.place-course-section {
    margin-top: 35px;

    padding: 30px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: none;
    border-radius: 20px;

    background: #f3f8ff;
}

.place-course-section h2 {
    margin-bottom: 8px;

    font-size: 23px;
    line-height: 1.4;

    word-break: keep-all;
}

.place-course-section p {
    font-size: 14px;
    line-height: 1.6;

    color: #6f7d90;

    word-break: keep-all;
}

.place-course-section .course-button {
    padding: 15px 27px;

    border: none;
    border-radius: 10px;

    background: #1268f3;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.place-course-section .course-button:hover {
    background: #075bd5;
}

/* -------------------------
   place.html Tablet
------------------------- */
@media (max-width: 900px) {

    .place-container {
        padding: 35px 18px 70px;
    }

    .place-header h1 {
        font-size: 34px;
    }

    .map-section #map {
        height: 400px;
    }

    .route-section {
        padding: 26px 22px;
    }

    .route-flow {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .route-destination {
        min-height: auto;
    }

    .route-destination .destination-image {
        height: 220px;
    }

    .place-course-section {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* -------------------------
   place.html Mobile
------------------------- */
@media (max-width: 600px) {

    .place-container {
        width: 100%;

        padding: 22px 14px 55px;
    }

    .place-header {
        margin-bottom: 20px;

        padding: 25px 20px;

        border-radius: 16px;

        background-position: 68% center;
    }

    .place-header h1 {
        font-size: 28px;
    }

    .place-address {
        font-size: 13px;
    }

    .map-section {
        margin-bottom: 32px;
    }

    .map-section #map {
        height: 300px;

        border-radius: 14px;
    }

    .route-section {
        padding: 20px 14px;

        border-radius: 18px;
    }

    .route-title {
        margin-bottom: 26px;
    }

    .route-title h2 {
        font-size: 22px;
    }

    .route-title p {
        font-size: 13px;
    }

    .route-flow {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .route-item {
        padding: 14px;

        display: block;
    }

    .route-content {
        display: block;
    }

    .route-image {
        width: 100%;
        height: 180px;

        margin-bottom: 13px;
    }

    .route-text h4 {
        white-space: normal;

        word-break: keep-all;
    }

    .route-arrow {
        display: block;

        width: 100%;

        margin-top: 13px;
        padding: 10px;

        text-align: center;
    }

    .route-destination {
        width: 100%;
        min-height: auto;

        padding: 22px 18px;
    }

    .route-destination .destination-image {
        width: 100%;
        height: 190px;
    }

    .route-destination h3 {
        white-space: normal;

        word-break: keep-all;
    }

    .place-course-section {
        margin-top: 24px;

        padding: 24px 18px;

        display: block;
    }

    .place-course-section h2 {
        font-size: 20px;
    }

    .place-course-section form {
        width: 100%;

        margin-top: 20px;
    }

    .place-course-section .course-button {
        width: 100%;
    }

    /* 로딩 팝업도 모바일 폭 보호 */
    .course-popup-box {
        width: calc(100% - 32px);
        max-width: 380px;

        padding: 34px 22px;
    }
}



/* =========================================================
   5. MYGANGNEUNG.HTML
   - 나의 여행 지도
   - 여행 동선
   - 상세 팝업
   - 이미지 저장 버튼
========================================================= */

/*
MY GANGNEUNG
========================= */

.my-gangneung-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}


/* 제목 */

.my-course-header {
    text-align: center;
    margin-bottom: 40px;
}

.my-course-header h1 {
    margin: 8px 0 12px;
    font-size: 36px;
}

.my-course-header > p:last-child {
    color: #777;
}


/* 지도 */

.my-map-section {
    margin-bottom: 70px;
}

.my-map-section #map {
    width: 100%;
    height: 600px;

    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* 지도 장소명 */

.map-place-label {
    padding: 7px 12px;

    background: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 18px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}


/* 여행 동선 */

.my-route-title {
    margin-bottom: 24px;
}

.my-route-title h2 {
    margin-top: 5px;
    font-size: 28px;
}

.my-route-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* 코스 카드 */

.my-route-card {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 18px;
}

.my-route-card.destination {
    background: #eef6ff;
    border-color: #b9d9ff;
}


/* BEFORE / AFTER */

.my-route-number {
    width: 70px;
    height: 42px;

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

    flex-shrink: 0;

    border-radius: 20px;

    background: #222;
    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.destination-number {
    width: 42px;
    border-radius: 50%;
}


/* 이미지 */

.my-route-image {
    width: 130px;
    height: 85px;

    object-fit: cover;

    border-radius: 12px;

    flex-shrink: 0;
}


/* 장소 정보 */

.my-route-info {
    flex: 1;
}

.my-route-info h3 {
    margin: 6px 0;
    font-size: 18px;
}

.my-route-info p {
    margin: 0;

    color: #888;

    font-size: 13px;
}

.course-badge,
.destination-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.course-badge {
    color: #888;
}

.destination-badge {
    color: #3478f6;
}

/*팝업*/
/* =========================
   장소 상세 팝업
========================= */

.detail-popup {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.48);

    z-index: 9999;

    align-items: center;
    justify-content: center;

    padding: 30px;
}


.detail-popup.active {
    display: flex;
}


/* 팝업 본체 */

.detail-popup-box {
    position: relative;

    width: 620px;
    max-width: 100%;

    max-height: 85%;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
            0 20px 60px
            rgba(0, 0, 0, 0.2);

    animation: detailPopupShow 0.25s ease;
}


/* 닫기 */

.detail-popup-close {
    position: absolute;

    top: 16px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow:
            0 3px 12px
            rgba(0, 0, 0, 0.12);
}


/* 이미지 */

.detail-popup-image-wrap {
    width: 100%;
    height: 330px;

    overflow: hidden;

    border-radius: 24px 24px 0 0;
}


.detail-popup-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* 내용 */

.detail-popup-content {
    padding: 30px 32px 35px;
}


.detail-popup-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.detail-popup-content h2 {
    margin: 0 0 8px;

    font-size: 27px;
}


.popup-address {
    margin: 0;

    color: #888;

    font-size: 14px;
}


/* 설명 */

.popup-description {
    margin-top: 25px;
    padding-top: 23px;

    border-top: 1px solid #eeeeee;
}


.popup-description h3 {
    margin: 0 0 12px;

    font-size: 16px;
}


.popup-description p {
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.9;

    word-break: keep-all;
}


/* 팝업 등장 */

@keyframes detailPopupShow {

    from {
        opacity: 0;

        transform:
                translateY(15px)
                scale(0.98);
    }

    to {
        opacity: 1;

        transform:
                translateY(0)
                scale(1);
    }

}
.detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 9px 14px;

    border: 1px solid #d5c094;
    border-radius: 999px;

    background: #fffaf0;

    color: #6f5b32;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.detail-button:hover {
    background: #d5c094;
    color: #ffffff;

    transform: translateY(-1px);
}

.detail-button:active {
    transform: translateY(0);
}
/*팝업 끝*/

/*저장버튼*/
.save-area {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 24px;
}


/* 저장 이미지 상단 */

.save-header {
    margin-bottom: 32px;
    padding-bottom: 25px;

    border-bottom: 1px solid #eeeeee;
}

.save-header span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #777;
}

.save-header h2 {
    margin: 8px 0 4px;

    font-size: 30px;
}

.save-header p {
    margin: 0;

    color: #888;
    font-size: 14px;
}


/* 카드 사이 동선 */

.route-line {
    height: 38px;

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

    padding-left: 34px;

    color: #b1a078;

    font-size: 20px;
}


/* 저장 영역 아래 */

.save-footer {
    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;

    text-align: right;

    color: #aaaaaa;

    font-size: 11px;
    letter-spacing: 1px;
}


/* 이미지 저장 버튼 */

.save-button-area {
    display: flex;
    justify-content: flex-end;

    margin-top: 24px;
}

.save-image-button {
    padding: 14px 22px;

    border: none;
    border-radius: 12px;

    background: #222222;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.save-image-button:hover {
    background: #444444;
    transform: translateY(-1px);
}

/* 저장 버튼 끝 */

/*마이 강릉 끝*/
/*
MY GANGNEUNG - 리뉴얼
================================================== */

.my-gangneung-container {
    max-width: 1240px;
    margin: 0 auto;

    padding: 0 24px 90px;
}


/* =========================
   상단 타이틀
========================= */

.my-course-header {
    position: relative;

    margin: 0 -100vw 35px;
    padding: 45px 100vw;

    text-align: left;

    background:
            linear-gradient(
                    90deg,
                    rgba(239, 248, 255, 0.98) 0%,
                    rgba(239, 248, 255, 0.88) 43%,
                    rgba(239, 248, 255, 0.20) 100%
            ),
            url("/images/mainImage.png")
            center 100% / cover no-repeat;

    overflow: hidden;
}


.my-course-header h1 {
    max-width: 1200px;

    margin: 0 auto 10px;

    font-size: 38px;
    font-weight: 800;

    letter-spacing: -1.5px;
}


.my-course-header h1 span {
    color: #1268f3;
}


.my-course-header > p:last-child {
    max-width: 1200px;

    margin: 0 auto;

    color: #666666;

    font-size: 15px;
}


/* =========================
   공통 카드 영역
========================= */

.my-map-section,
.my-route-section {

    margin-bottom: 25px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e8edf5;
    border-radius: 24px;

    box-shadow:
            0 10px 35px
            rgba(50, 105, 170, 0.07);
}


/* =========================
   영역 제목
========================= */

.my-route-title {

    display: flex;
    align-items: baseline;

    gap: 16px;

    margin-bottom: 20px;
}


.my-route-title h2 {

    margin: 0;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.5px;
}


.my-route-title p {

    color: #8a8a8a;

    font-size: 13px;
}


/* =========================
   지도
========================= */

.my-map-section {
    margin-bottom: 24px;
}


.my-map-section #map {

    width: 100%;
    height: 430px;

    border: none;

    border-radius: 16px;

    box-shadow: none;
}


/* =========================
   저장 영역
========================= */

.save-area {

    padding: 0;

    border: none;

    background: transparent;

    border-radius: 0;
}


/* =========================
   여행 동선 목록
========================= */

.my-route-list {

    position: relative;

    gap: 10px;

    padding-left: 10px;
}


/* 왼쪽 세로 여행선 */

.my-route-list::before {

    content: "";

    position: absolute;

    top: 38px;
    bottom: 38px;

    left: 31px;

    width: 2px;

    background: #dceaff;
}


/* =========================
   코스 카드
========================= */

.my-route-card {

    position: relative;

    min-height: 115px;

    padding: 14px 18px;

    gap: 20px;

    border: 1px solid #e3ebf5;

    border-radius: 14px;

    background: #ffffff;

    transition: 0.2s ease;
}


.my-route-card:hover {

    border-color: #c6dcfa;

    box-shadow:
            0 6px 18px
            rgba(42, 105, 185, 0.08);
}


/* 핵심 목적지 */

.my-route-card.destination {

    background: #f7fbff;

    border-color: #b9d9ff;
}


/* =========================
   번호
========================= */

.my-route-number {

    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    padding: 0;

    border-radius: 50%;

    background: #16a36a;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0;

    color: #ffffff;
}


.my-route-card:nth-child(2) .my-route-number {

    background: #ff7a18;
}


.destination-number {

    width: 44px;

    background: #1268f3;

    color: #ffffff;

    font-size: 17px;
}


.my-route-card:nth-child(4) .my-route-number {

    background: #1268f3;
}


.my-route-card:nth-child(5) .my-route-number {

    background: #1268f3;
}


/* =========================
   이미지
========================= */

.my-route-image {

    width: 165px;
    height: 95px;

    border-radius: 12px;

    object-fit: cover;
}


/* =========================
   장소 정보
========================= */

.my-route-info {

    min-width: 0;

    flex: 1;
}


.my-route-info h3 {

    margin: 7px 0;

    font-size: 18px;

    color: #222222;
}


.my-route-info p {

    color: #888888;

    font-size: 12px;
}


/* 카테고리 */

.course-badge,
.destination-badge {

    display: inline-block;

    padding: 4px 8px;

    border-radius: 6px;

    background: #eaf3ff;

    color: #1268f3;

    font-size: 11px;

    letter-spacing: 0;
}


.destination-badge {

    background: #fff0f0;

    color: #f04f4f;
}


/* =========================
   설명 보기 버튼
========================= */

.detail-button {

    flex-shrink: 0;

    padding: 11px 17px;

    border: 1px solid #1268f3;

    border-radius: 9px;

    background: #ffffff;

    color: #1268f3;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


.detail-button:hover {

    background: #1268f3;

    color: #ffffff;

    transform: none;
}


/* =========================
   이미지 저장 버튼
========================= */

.save-button-area {

    justify-content: center;

    margin-top: 22px;
}


.save-image-button {

    min-width: 370px;

    padding: 15px 40px;

    border-radius: 11px;

    background: #1268f3;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


.save-image-button:hover {

    background: #0759d6;
}


/* =========================
   반응형
========================= */

@media (max-width: 750px) {

    .my-course-header h1 {
        font-size: 30px;
    }

    .my-route-title {
        display: block;
    }

    .my-route-title h2 {
        margin-bottom: 6px;
    }

    .my-map-section #map {
        height: 350px;
    }

    .my-route-card {
        flex-wrap: wrap;
    }

    .my-route-image {
        width: 120px;
        height: 80px;
    }

    .detail-button {
        margin-left: 64px;
    }

    .save-image-button {
        width: 100%;
        min-width: 0;
    }

}
/* ==================================================
   MY GANGNEUNG - 리뉴얼 끝
================================================== */


/* =========================================================
   6. EXPORT IMAGE
   - 화면 밖에서 html2canvas로 저장하는 전용 영역
========================================================= */

/* ==================================================
   이미지 저장 전용
================================================== */

/*
 display:none 사용 X
 html2canvas가 캡처할 수 있도록 화면 밖으로 이동
*/
.export-area {
    position: fixed;

    left: -10000px;
    top: 0;

    width: 850px;

    padding: 48px 48px 42px;

    background:
            linear-gradient(
                    rgba(239, 248, 255, 0.25),
                    rgba(255, 255, 255, 0.95)
            ),
            #ffffff;

    color: #222222;

    font-family: Arial, sans-serif;
}


/* =========================
   상단
========================= */

.export-header {
    min-height: 190px;
    padding: 28px 30px;
    border-radius: 40px 40px 40px 40px;

    background:
            linear-gradient(
                    rgba(255,255,255,0.18),
                    rgba(255,255,255,0.18)
            ),
            url("/images/mainImage.png")
            center / cover no-repeat;
}


.export-brand {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 44px;

    font-size: 23px;
}


.export-title h1 {
    margin: 0;

    font-size: 59px;
    line-height: 0.98;

    letter-spacing: -2px;
}


.export-title h1 span {
    color: #1268f3;
}


.export-title h2 {
    margin-top: 15px;

    font-size: 25px;

    color: #454c56;
}


.export-title p {
    margin-top: 25px;

    color: #3478f6;

    font-size: 16px;
}


/* =========================
   여행 동선
========================= */

.export-route {
    position: relative;

    padding: 18px 0 15px;
}


/* 세로선 */
.export-route::before {
    content: "";

    position: absolute;

    top: 65px;
    bottom: 65px;

    left: 33px;

    width: 3px;

    background: #d9e9fa;
}


.export-route-item {
    position: relative;

    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 12px;

    padding: 15px 20px 15px 0;

    background: rgba(255,255,255,0.94);

    border-radius: 18px;

    box-shadow:
            0 7px 18px
            rgba(60, 105, 150, 0.07);
}


.export-route-item:last-child {
    margin-bottom: 0;
}


/* =========================
   왼쪽 마커
========================= */

.export-marker {
    position: relative;

    z-index: 2;

    width: 65px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
}


/* 일반 장소 */
.export-dot {
    width: 16px;
    height: 16px;

    display: block;

    border-radius: 50%;

    background: #cdd9e6;

    border: 4px solid #ffffff;

    box-shadow:
            0 0 0 1px #d3e0ed;
}


/* 핵심 목적지만 별 */
.export-star {
    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: #ff3545;

    color: #ffffff;

    font-size: 23px;

    box-shadow:
            0 5px 15px
            rgba(255, 53, 69, 0.22);
}


/* =========================
   이미지
========================= */

.export-route-image {
    width: 185px;
    height: 105px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 13px;
}


/* =========================
   장소 정보
========================= */

.export-route-info {
    flex: 1;

    min-width: 0;
}


.export-time {
    display: inline-block;

    margin-bottom: 7px;

    padding: 4px 9px;

    border-radius: 9px;

    background: #eaf4ff;

    color: #1268f3;

    font-size: 13px;
    font-weight: 700;
}


.export-route-info h3 {
    margin: 0 0 8px;

    font-size: 21px;

    letter-spacing: -0.5px;
}


.export-route-info p {
    margin: 0;

    overflow: hidden;

    color: #7c8490;

    font-size: 13px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* 핵심 목적지만 약간 강조 */
.export-route-item.destination {
    background:
            linear-gradient(
                    90deg,
                    #ffffff,
                    #fff8f8
            );
}


/* =========================
   하단
========================= */

.export-footer {
    margin-top: 28px;

    padding: 25px 12px 5px;
}


.export-footer > p {
    margin-bottom: 32px;

    color: #1268f3;

    font-size: 18px;

    font-style: italic;
}


.export-footer-brand {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.export-footer-brand strong {
    font-size: 19px;
}


.export-footer-brand span {
    color: #86a4c9;

    font-size: 9px;

    letter-spacing: 3px;
}
/*히든 끝*/
