.page-city-view .city-view-main {
    min-height: 50vh;
}

.city-hero-section {
    min-height: 220px;
    box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.45);
}

@media (min-width: 768px) {
    .city-hero-section {
        min-height: 300px;
    }
}

.city-hero-banner {
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.city-hero-section:hover .city-hero-banner {
    transform: scale(1.06);
}

.city-hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0.82) 100%);
}

/* —— 히어로 메타(날씨·시각) —— */
.city-hero-meta {
    min-height: 2.25rem;
}

.city-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.8125rem;
    line-height: 1.2;
    color: #fff;
}

.city-meta-icon {
    font-size: 1.05rem;
    opacity: 0.95;
}

.city-meta-main {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.city-meta-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* —— 기획전 배너 슬라이더 —— */
.city-banners-swiper {
    padding-bottom: 1.75rem;
}

.city-banner-card {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: rgb(241 245 249);
    box-shadow: 0 10px 28px -18px rgba(15, 23, 42, 0.5);
}

.dark .city-banner-card {
    background: rgb(30 41 59);
}

.city-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.city-banner-card:hover img {
    transform: scale(1.04);
}

.city-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.2rem;
    padding: 1rem 1.125rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62) 100%);
    color: #fff;
}

.city-banner-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.city-banner-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.city-banners-pagination.swiper-pagination {
    bottom: 0;
}

.city-banners-pagination .swiper-pagination-bullet-active {
    background: #007ACC;
}

.city-tab {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgb(100 116 139);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
}

.city-tab-active {
    color: #007ACC;
    border-bottom-color: #007ACC;
}

.city-tab[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgb(51 65 85);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dark .city-chip {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
    color: rgb(226 232 240);
}

.city-chip:hover {
    border-color: #007ACC;
    color: #007ACC;
}

.city-chip-active {
    background: #007ACC;
    border-color: #007ACC;
    color: #fff;
}

.city-group-slide {
    width: 280px;
    max-width: 85vw;
}

.city-group-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -18px rgba(15, 23, 42, 0.4);
}

.dark .city-group-card {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-group-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.city-group-card-body {
    padding: 0.875rem 1rem 1rem;
}

.city-group-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    color: #007ACC;
    margin-bottom: 0.25rem;
}

.city-group-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgb(15 23 42);
    line-height: 1.35;
}

.dark .city-group-title {
    color: rgb(241 245 249);
}

.city-group-desc {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: rgb(100 116 139);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.city-section-slide {
    width: 168px;
    max-width: 46vw;
}

@media (min-width: 768px) {
    .city-section-slide {
        width: 200px;
    }
}

.city-section-slide .md-product-card {
    height: 100%;
}

/* —— 여행정보 탭 —— */
.city-info-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.city-info-nav::-webkit-scrollbar {
    display: none;
}

.city-info-nav-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgb(71 85 105);
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dark .city-info-nav-link {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
    color: rgb(203 213 225);
}

.city-info-nav-link:hover {
    border-color: #007ACC;
    color: #007ACC;
}

.city-info-nav-active {
    background: #007ACC;
    border-color: #007ACC;
    color: #fff;
}

.city-info-block {
    margin-bottom: 0;
}

.city-info-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.city-info-more {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #007ACC;
}

.city-info-more:hover {
    text-decoration: underline;
}

.city-basic-card-slide {
    width: 132px;
    max-width: 38vw;
}

.city-basic-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-height: 118px;
    padding: 0.875rem;
    border-radius: 1rem;
    border: 1px solid rgb(226 232 240);
    background: rgb(248 250 252);
}

.dark .city-basic-card {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-basic-card-icon {
    font-size: 1.25rem;
    color: #007ACC;
}

.city-basic-card-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgb(100 116 139);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.city-basic-card-title {
    display: block;
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgb(15 23 42);
    line-height: 1.35;
}

.dark .city-basic-card-title {
    color: rgb(241 245 249);
}

.city-basic-card-value {
    font-size: 0.75rem;
    color: rgb(100 116 139);
    line-height: 1.4;
}

.city-info-content .blue_box,
.city-info-content .gray_box {
    margin: 1rem 0;
    padding: 1.25rem;
    border-radius: 1rem;
    box-sizing: border-box;
}

.city-info-content .blue_box {
    background: #e2f8ff;
}

.city-info-content .gray_box {
    background: #f6f6f6;
}

.dark .city-info-content .gray_box {
    background: rgb(30 41 59);
}

.city-info-content ul {
    margin: 0.5rem 0 0;
    padding-left: 1.125rem;
}

.city-info-content li {
    margin: 0.375rem 0;
    line-height: 1.55;
    font-size: 0.875rem;
}

.city-info-content h5 {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
}

.city-ranking-block + .city-ranking-block {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgb(226 232 240);
}

.dark .city-ranking-block + .city-ranking-block {
    border-top-color: rgb(51 65 85);
}

.city-ranking-kicker {
    font-size: 0.8125rem;
    color: rgb(100 116 139);
    margin-bottom: 0.375rem;
}

.city-ranking-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(15 23 42);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.dark .city-ranking-heading {
    color: rgb(241 245 249);
}

.city-ranking-heading em {
    font-style: normal;
    color: #007ACC;
}

.city-ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .city-ranking-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.city-ranking-item {
    position: relative;
}

.city-ranking-num {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    font-style: normal;
}

.city-ranking-link {
    display: flex;
    gap: 0.875rem;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    min-height: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.dark .city-ranking-link {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-ranking-link:hover {
    border-color: #007ACC;
    box-shadow: 0 4px 14px rgba(0, 122, 204, 0.08);
}

.city-ranking-link img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.city-ranking-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.city-ranking-text h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgb(15 23 42);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .city-ranking-text h3 {
    color: rgb(241 245 249);
}

.city-ranking-text p {
    font-size: 0.75rem;
    color: rgb(100 116 139);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.city-ranking-btn {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #007ACC;
}

.city-guide-slide,
.city-topoi-slide,
.city-video-slide {
    width: 220px;
    max-width: 72vw;
}

.city-guide-card,
.city-topoi-card {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-guide-card:hover,
.city-topoi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -18px rgba(15, 23, 42, 0.4);
}

.city-guide-thumb img,
.city-topoi-thumb img {
    transition: transform 0.4s ease;
}

.city-guide-card:hover .city-guide-thumb img,
.city-topoi-card:hover .city-topoi-thumb img {
    transform: scale(1.05);
}

.dark .city-guide-card,
.dark .city-topoi-card {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-guide-thumb,
.city-topoi-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgb(241 245 249);
}

.city-guide-thumb img,
.city-topoi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.city-guide-body,
.city-topoi-body {
    padding: 0.75rem 0.875rem 1rem;
}

.city-guide-title,
.city-topoi-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgb(15 23 42);
    line-height: 1.35;
}

.dark .city-guide-title,
.dark .city-topoi-name {
    color: rgb(241 245 249);
}

.city-guide-sub,
.city-topoi-en {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgb(100 116 139);
}

.city-topoi-hash {
    display: inline-block;
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    color: #007ACC;
}

.city-video-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: #fff;
}

.dark .city-video-card {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-video-player {
    width: 100%;
    display: block;
    background: #000;
}

.city-video-title {
    padding: 0.625rem 0.75rem 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.city-video-hit {
    display: block;
    padding: 0 0.75rem 0.75rem;
    font-size: 0.6875rem;
    color: rgb(100 116 139);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.city-basic-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.city-guide-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .city-guide-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.city-guide-list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.dark .city-guide-list-item {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-guide-list-item:hover {
    border-color: #007ACC;
    box-shadow: 0 4px 14px rgba(0, 122, 204, 0.08);
}

.city-guide-list-thumb {
    width: 112px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgb(241 245 249);
}

.city-guide-list-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.city-guide-list-body h2 {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(15 23 42);
}

.dark .city-guide-list-body h2 {
    color: rgb(241 245 249);
}

.city-guide-list-body p {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: rgb(100 116 139);
}

.city-topoi-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .city-topoi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .city-topoi-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.city-topoi-list-item {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: #fff;
}

.dark .city-topoi-list-item {
    border-color: rgb(51 65 85);
    background: rgb(15 23 42);
}

.city-topoi-list-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.city-topoi-list-body {
    padding: 0.75rem 0.875rem 1rem;
}

.city-topoi-list-body h3 {
    font-size: 0.875rem;
    font-weight: 700;
}

.city-topoi-list-body p {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgb(100 116 139);
}

.city-poi-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .city-poi-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.city-poi-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
}

.city-poi-block {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgb(248 250 252);
}

.dark .city-poi-block {
    background: rgb(15 23 42);
}

.city-poi-block h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.city-poi-good {
    border-left: 4px solid #007ACC;
}

.city-poi-bad {
    border-left: 4px solid #ef4444;
}

.city-poi-tip {
    border-left: 4px solid #f59e0b;
}

.city-poi-review {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(226 232 240);
    background: #fff;
}

.city-info-detail-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(226 232 240);
}

.dark .city-info-detail-section {
    border-bottom-color: rgb(51 65 85);
}

.city-info-detail-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.city-info-detail-row {
    display: flex;
    gap: 1rem;
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.city-info-detail-term {
    width: 5rem;
    flex-shrink: 0;
    color: rgb(100 116 139);
    font-weight: 600;
}

.city-info-detail-tip,
.city-info-detail-notice {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgb(71 85 105);
}

.city-video-full-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    padding-bottom: 0.75rem;
}

.city-video-full-card h3 {
    padding: 0.75rem 1rem 0;
    font-size: 0.9375rem;
    font-weight: 700;
}

.city-video-full-card p {
    padding: 0.25rem 1rem 0;
}

.city-sub-actions {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.city-sub-list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 10rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.dark .city-sub-list-btn {
    border-color: #334155;
    background: #1e293b;
    color: #e2e8f0;
}

.city-sub-list-btn:hover {
    border-color: #007ACC;
    color: #007ACC;
    background: rgba(0, 122, 204, 0.06);
}

.city-sub-list-btn .material-icons-round {
    font-size: 1.125rem;
}
