:root {
    --jm-ink: #12212b;
    --jm-ink-soft: #41515c;
    --jm-muted: #75828b;
    --jm-line: #e7ecef;
    --jm-bg: #f5f8f8;
    --jm-card: #ffffff;
    --jm-primary: #0b766e;
    --jm-primary-dark: #075e58;
    --jm-primary-soft: #e7f4f2;
    --jm-accent: #ff6b4a;
    --jm-accent-soft: #fff0eb;
    --jm-gold: #d49b31;
    --jm-yellow: #fee500;
    --jm-shadow: 0 18px 50px rgba(17, 37, 48, .09);
    --jm-radius-xl: 30px;
    --jm-radius-lg: 22px;
    --jm-radius-md: 16px;
    --jm-shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--jm-ink);
    background: var(--jm-bg);
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    line-height: 1.5;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body.jm-no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.jm-shell {
    width: min(calc(100% - 40px), var(--jm-shell));
    margin-inline: auto;
}

.mobile-only {
    display: none !important;
}

.pc-only {
    display: block;
}

.jm-utility {
    color: #dce8e7;
    background: #102b2d;
    font-size: 12px;
}

.jm-utility__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jm-utility p {
    margin: 0;
}

.jm-utility p i {
    margin-right: 6px;
    color: #8ad7cf;
}

.jm-utility__inner > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.jm-utility a {
    color: #dce8e7;
}

.jm-utility a:hover {
    color: #fff;
}

.jm-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(231, 236, 239, .9);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, transform .25s ease;
}

.jm-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(17, 37, 48, .08);
}

.jm-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.jm-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.jm-logo__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--jm-primary), #0d8f84);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(11, 118, 110, .22);
}

.jm-logo__mark i {
    font-size: 19px;
}

.jm-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.jm-logo__text strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.9px;
}

.jm-logo__text small {
    margin-top: 5px;
    color: var(--jm-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.jm-gnb {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.jm-gnb a {
    position: relative;
    padding: 27px 0 25px;
    color: #33434d;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
}

.jm-gnb a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 3px;
    background: var(--jm-primary);
    border-radius: 99px;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.jm-gnb a:hover,
.jm-gnb a.active {
    color: var(--jm-primary-dark);
}

.jm-gnb a:hover::after,
.jm-gnb a.active::after {
    width: 22px;
}

.jm-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.jm-search-toggle,
.jm-mobile-menu {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--jm-ink);
    background: #f4f7f7;
    border: 1px solid var(--jm-line);
    border-radius: 14px;
}

.jm-header__cta {
    padding: 12px 17px;
    color: #fff;
    background: var(--jm-primary);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 9px 22px rgba(11, 118, 110, .18);
}

.jm-header__cta i {
    margin-right: 6px;
}

.jm-search-layer {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(7, 27, 29, .82);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.jm-search-layer.open {
    opacity: 1;
    visibility: visible;
}

.jm-search-layer__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
}

.jm-search-layer form {
    width: min(760px, 100%);
    color: #fff;
}

.jm-search-layer label {
    display: block;
    margin-bottom: 20px;
    font-size: clamp(25px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1.6px;
}

.jm-search-layer form > div {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 21px;
    color: var(--jm-ink);
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--jm-shadow);
}

.jm-search-layer input {
    width: 100%;
    padding: 13px 0;
    color: var(--jm-ink);
    background: transparent;
    border: 0;
    outline: none;
    font-size: 17px;
}

.jm-search-layer button[type="submit"] {
    padding: 14px 24px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 14px;
    font-weight: 800;
}

.jm-search-layer p {
    margin: 15px 4px 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.jm-main {
    overflow: hidden;
}

.jm-hero {
    position: relative;
    padding: 58px 0 44px;
    background:
        radial-gradient(circle at 14% 0%, rgba(131, 220, 209, .24), transparent 34%),
        radial-gradient(circle at 92% 16%, rgba(255, 187, 137, .19), transparent 30%),
        linear-gradient(180deg, #f8fbfa 0%, #eef5f4 100%);
}

.jm-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(11,118,110,.045);
    border-radius: 50%;
}

.jm-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
    align-items: center;
    gap: 54px;
}

.jm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px;
    padding: 8px 12px;
    color: var(--jm-primary-dark);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(11,118,110,.14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.jm-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(40px, 5.4vw, 67px);
    line-height: 1.08;
    letter-spacing: -3.7px;
    font-weight: 950;
}

.jm-hero h1 em {
    color: var(--jm-primary);
    font-style: normal;
}

.jm-hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--jm-ink-soft);
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: -.35px;
}

.jm-hero-search {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    max-width: 650px;
    margin-top: 28px;
    padding: 9px 9px 9px 20px;
    background: #fff;
    border: 1px solid rgba(11,118,110,.12);
    border-radius: 20px;
    box-shadow: 0 17px 38px rgba(18, 48, 50, .1);
}

.jm-hero-search > i {
    color: var(--jm-primary);
}

.jm-hero-search input {
    min-width: 0;
    padding: 13px 0;
    border: 0;
    outline: 0;
    font-size: 15px;
}

.jm-hero-search button {
    padding: 14px 21px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 14px;
    font-weight: 850;
}

.jm-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.jm-hero__chips a {
    padding: 7px 11px;
    color: #52626b;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(67,85,95,.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.jm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.jm-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease;
}

.jm-btn:hover {
    transform: translateY(-2px);
}

.jm-btn--primary {
    color: #fff;
    background: var(--jm-primary);
    box-shadow: 0 12px 25px rgba(11,118,110,.2);
}

.jm-btn--light {
    color: var(--jm-ink);
    background: #fff;
    border-color: var(--jm-line);
}

.jm-hero-panel {
    position: relative;
    padding: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 32px;
    box-shadow: 0 32px 70px rgba(16, 50, 52, .16);
    backdrop-filter: blur(18px);
}

.jm-hero-panel__image {
    position: relative;
    height: 255px;
    overflow: hidden;
    border-radius: 23px;
    background: linear-gradient(135deg, #d4e8e5, #bcd8d4);
}

.jm-hero-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jm-hero-panel__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5,28,29,.68));
}

.jm-hero-panel__caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.jm-hero-panel__caption small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.72);
    font-weight: 700;
}

.jm-hero-panel__caption strong {
    font-size: 21px;
    font-weight: 900;
}

.jm-hero-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.jm-hero-stat {
    padding: 16px 12px;
    text-align: center;
    background: #f7faf9;
    border: 1px solid #edf1f1;
    border-radius: 17px;
}

.jm-hero-stat strong {
    display: block;
    color: var(--jm-primary-dark);
    font-size: 22px;
    font-weight: 900;
}

.jm-hero-stat span {
    display: block;
    margin-top: 2px;
    color: var(--jm-muted);
    font-size: 11px;
    font-weight: 750;
}

.jm-trustbar {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: #fff;
    border-top: 1px solid rgba(222,230,230,.8);
    border-bottom: 1px solid var(--jm-line);
}

.jm-trustbar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.jm-trustbar article {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 25px;
    border-right: 1px solid var(--jm-line);
}

.jm-trustbar article:last-child {
    border-right: 0;
}

.jm-trustbar i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--jm-primary);
    background: var(--jm-primary-soft);
    border-radius: 12px;
}

.jm-trustbar strong {
    display: block;
    font-size: 14px;
    font-weight: 850;
}

.jm-trustbar span {
    display: block;
    margin-top: 2px;
    color: var(--jm-muted);
    font-size: 11px;
}

.jm-section {
    padding: 76px 0;
}

.jm-section--white {
    background: #fff;
}

.jm-section--soft {
    background: #eef5f4;
}

.jm-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.jm-section-head__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--jm-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .4px;
}

.jm-section-head h2 {
    margin: 0;
    font-size: clamp(27px, 3.2vw, 40px);
    line-height: 1.18;
    letter-spacing: -1.7px;
    font-weight: 950;
}

.jm-section-head p {
    margin: 9px 0 0;
    color: var(--jm-muted);
    font-size: 14px;
}

.jm-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    color: var(--jm-ink-soft);
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.jm-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jm-service-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    color: #fff;
    border-radius: 28px;
    box-shadow: var(--jm-shadow);
}

.jm-service-card--shop {
    background:
        radial-gradient(circle at 95% 8%, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(135deg, #0b766e, #07524d);
}

.jm-service-card--homecare {
    background:
        radial-gradient(circle at 90% 12%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(135deg, #253d57, #172b40);
}

.jm-service-card__icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    font-size: 22px;
}

.jm-service-card h3 {
    margin: 28px 0 8px;
    font-size: 29px;
    font-weight: 950;
    letter-spacing: -1.2px;
}

.jm-service-card p {
    max-width: 460px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.7;
}

.jm-service-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 26px;
}

.jm-service-card__count strong {
    font-size: 29px;
    font-weight: 950;
}

.jm-service-card__count span {
    margin-left: 5px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.jm-service-card__link {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--jm-ink);
    background: #fff;
    border-radius: 15px;
}

.jm-region-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.jm-region-card {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 19px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.jm-region-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11,118,110,.28);
    box-shadow: 0 13px 30px rgba(17,37,48,.08);
}

.jm-region-card i {
    color: var(--jm-primary);
    font-size: 18px;
}

.jm-region-card strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
}

.jm-region-card span {
    display: block;
    margin-top: 3px;
    color: var(--jm-muted);
    font-size: 11px;
}

.jm-card-rail-wrap {
    position: relative;
}

.jm-card-grid,
.jm-card-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.jm-rail-controls {
    display: flex;
    gap: 8px;
}

.jm-rail-controls button {
    width: 40px;
    height: 40px;
    color: var(--jm-ink);
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 13px;
}

.jm-shop-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 23px;
    box-shadow: 0 12px 34px rgba(17,37,48,.06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.jm-shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(17,37,48,.11);
}

.jm-shop-card__media {
    position: relative;
    height: 205px;
    display: block;
    overflow: hidden;
    background: #dbe8e6;
}

.jm-shop-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,27,29,.04), rgba(5,27,29,.55));
}

.jm-shop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.jm-shop-card:hover .jm-shop-card__media img {
    transform: scale(1.045);
}

.jm-shop-card__type,
.jm-shop-card__event,
.jm-shop-card__status {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.jm-shop-card__type {
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    color: #fff;
    backdrop-filter: blur(8px);
}

.jm-shop-card__type.shop {
    background: rgba(11,118,110,.9);
}

.jm-shop-card__type.homecare {
    background: rgba(32,55,78,.92);
}

.jm-shop-card__event {
    top: 14px;
    right: 14px;
    max-width: 125px;
    padding: 7px 10px;
    overflow: hidden;
    color: #6c4e00;
    background: rgba(255,245,191,.94);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jm-shop-card__status {
    left: 14px;
    bottom: 14px;
    gap: 5px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(8,28,30,.58);
    backdrop-filter: blur(10px);
}

.jm-shop-card__status i {
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #cbd5d8;
    border-radius: 50%;
}

.jm-shop-card__status.open i {
    background: #53e0a2;
    box-shadow: 0 0 0 4px rgba(83,224,162,.15);
}

.jm-shop-card__status.closed i {
    background: #ff8a70;
}

.jm-shop-card__body {
    padding: 18px;
}

.jm-shop-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--jm-primary);
    font-size: 11px;
    font-weight: 850;
}

.jm-shop-card h3 {
    margin: 8px 0 0;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.7px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 950;
}

.jm-shop-card__program {
    min-height: 40px;
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: var(--jm-ink-soft);
    font-size: 12px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.jm-shop-card__tags {
    min-height: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.jm-shop-card__tags span {
    padding: 5px 8px;
    color: #58706d;
    background: #f0f6f5;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 750;
}

.jm-shop-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #edf1f2;
}

.jm-shop-card__price small {
    display: block;
    margin-bottom: 2px;
    color: var(--jm-muted);
    font-size: 10px;
}

.jm-shop-card__price del {
    display: block;
    color: #9aa5ab;
    font-size: 10px;
}

.jm-shop-card__price strong {
    display: block;
    color: var(--jm-ink);
    font-size: 21px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -.6px;
}

.jm-shop-card__price strong em {
    margin-left: 2px;
    font-size: 11px;
    font-style: normal;
}

.jm-shop-card__price strong.ask {
    font-size: 16px;
}

.jm-shop-card__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.jm-shop-card__actions a {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--jm-primary);
    background: var(--jm-primary-soft);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 850;
}

.jm-shop-card__actions a.detail {
    padding: 0 12px;
    color: #fff;
    background: var(--jm-ink);
}

.jm-empty {
    grid-column: 1 / -1;
    padding: 46px 20px;
    text-align: center;
    color: var(--jm-muted);
    background: #fff;
    border: 1px dashed #d5dfe1;
    border-radius: 22px;
}

.jm-empty i {
    display: block;
    margin-bottom: 12px;
    color: #9ab4b1;
    font-size: 30px;
}

.jm-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.jm-info-card {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 22px;
}

.jm-info-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--jm-primary);
    background: var(--jm-primary-soft);
    border-radius: 15px;
    font-size: 18px;
}

.jm-info-card h3 {
    margin: 18px 0 7px;
    font-size: 18px;
    font-weight: 900;
}

.jm-info-card p {
    margin: 0;
    color: var(--jm-muted);
    font-size: 13px;
    line-height: 1.75;
}

.jm-community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.jm-community-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 22px;
}

.jm-community-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.jm-community-card__head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
}

.jm-community-card__head a {
    color: var(--jm-muted);
    font-size: 11px;
    font-weight: 750;
}

.jm-community-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jm-community-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-top: 1px solid #edf1f2;
}

.jm-community-list a {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jm-community-list time {
    flex: 0 0 auto;
    color: var(--jm-muted);
    font-size: 10px;
}

.jm-seo-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: start;
}

.jm-seo-copy,
.jm-faq {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 24px;
}

.jm-seo-copy h2,
.jm-faq h2 {
    margin: 0 0 14px;
    font-size: 25px;
    letter-spacing: -1px;
    font-weight: 950;
}

.jm-seo-copy p {
    margin: 0 0 12px;
    color: var(--jm-ink-soft);
    font-size: 13px;
    line-height: 1.85;
}

.jm-faq details {
    border-top: 1px solid var(--jm-line);
}

.jm-faq details:first-of-type {
    border-top: 0;
}

.jm-faq summary {
    position: relative;
    padding: 17px 30px 17px 0;
    list-style: none;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
}

.jm-faq summary::-webkit-details-marker {
    display: none;
}

.jm-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    color: var(--jm-primary);
    font-size: 20px;
}

.jm-faq details[open] summary::after {
    content: "−";
}

.jm-faq details p {
    margin: -4px 0 17px;
    color: var(--jm-muted);
    font-size: 12px;
    line-height: 1.75;
}

.jm-footer {
    color: #cbd8dc;
    background: #10252b;
    padding: 52px 0 104px;
}

.jm-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr .7fr .8fr 1fr;
    gap: 45px;
}

.jm-logo--footer .jm-logo__text strong {
    color: #fff;
}

.jm-logo--footer .jm-logo__text small {
    color: #7f969e;
}

.jm-footer__brand p,
.jm-footer__contact p {
    margin: 18px 0 0;
    color: #8fa3aa;
    font-size: 12px;
    line-height: 1.8;
}

.jm-footer__menu,
.jm-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jm-footer__menu strong,
.jm-footer__contact strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
}

.jm-footer__menu a,
.jm-footer__contact a {
    color: #aebfc4;
    font-size: 12px;
}

.jm-footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 12px;
    color: #3b3000;
    background: var(--jm-yellow);
    border-radius: 11px;
    font-weight: 850;
}

.jm-footer__notice {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    padding-top: 24px;
    color: #758c93;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
}

.jm-footer__notice p {
    max-width: 760px;
    margin: 0;
}

.jm-footer__notice span {
    white-space: nowrap;
}

.jm-floating-kakao {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1100;
    width: 58px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #3c3300;
    background: var(--jm-yellow);
    border-radius: 20px;
    box-shadow: 0 15px 34px rgba(29,32,0,.22);
    font-size: 10px;
    font-weight: 900;
}

.jm-floating-kakao i {
    font-size: 18px;
}

/* 공통 서브페이지 */
.jm-page-hero {
    padding: 55px 0 34px;
    background: linear-gradient(180deg, #f8fbfa, #edf5f4);
    border-bottom: 1px solid var(--jm-line);
}

.jm-page-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.jm-page-hero__eyebrow {
    margin: 0 0 8px;
    color: var(--jm-primary);
    font-size: 12px;
    font-weight: 900;
}

.jm-page-hero h1 {
    margin: 0;
    font-size: clamp(31px, 4.4vw, 48px);
    letter-spacing: -2px;
    font-weight: 950;
}

.jm-page-hero p {
    max-width: 700px;
    margin: 13px 0 0;
    color: var(--jm-muted);
    font-size: 14px;
    line-height: 1.75;
}

.jm-page-content {
    padding: 38px 0 80px;
}

.jm-filter-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(17,37,48,.055);
}

.jm-filter-field {
    position: relative;
}

.jm-filter-field i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--jm-primary);
    transform: translateY(-50%);
    pointer-events: none;
}

.jm-filter-field input,
.jm-filter-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 41px;
    color: var(--jm-ink);
    background: #f6f9f9;
    border: 1px solid #edf1f1;
    border-radius: 13px;
    outline: 0;
}

.jm-filter-submit {
    min-width: 104px;
    height: 48px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 13px;
    font-weight: 850;
}

.jm-type-tabs,
.jm-theme-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
}

.jm-type-tabs::-webkit-scrollbar,
.jm-theme-chips::-webkit-scrollbar {
    display: none;
}

.jm-type-tabs button,
.jm-theme-chips button {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: var(--jm-ink-soft);
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.jm-type-tabs button.active,
.jm-theme-chips button.active {
    color: #fff;
    background: var(--jm-ink);
    border-color: var(--jm-ink);
}

.jm-results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 22px 0 15px;
}

.jm-results-meta strong {
    font-size: 14px;
}

.jm-results-meta span {
    color: var(--jm-primary);
}

.jm-results-meta select {
    height: 38px;
    padding: 0 11px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 10px;
    font-size: 11px;
}

.jm-loading {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: var(--jm-muted);
}

.jm-loading i {
    display: block;
    margin-bottom: 12px;
    color: var(--jm-primary);
    font-size: 28px;
}

/* 지도 */
.jm-map-page {
    height: calc(100vh - 76px);
    min-height: 650px;
    display: grid;
    grid-template-columns: 390px 1fr;
    background: #eef3f3;
}

.jm-map-sidebar {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border-right: 1px solid var(--jm-line);
    box-shadow: 8px 0 24px rgba(17,37,48,.06);
}

.jm-map-sidebar__head {
    padding: 20px;
    border-bottom: 1px solid var(--jm-line);
}

.jm-map-sidebar__head h1 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.9px;
}

.jm-map-sidebar__head p {
    margin: 6px 0 14px;
    color: var(--jm-muted);
    font-size: 11px;
}

.jm-map-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
}

.jm-map-search input {
    min-width: 0;
    height: 43px;
    padding: 0 13px;
    background: #f5f8f8;
    border: 1px solid var(--jm-line);
    border-radius: 12px;
    outline: 0;
}

.jm-map-search button {
    width: 43px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 12px;
}

.jm-map-list {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px;
}

.jm-map-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
}

.jm-map-item + .jm-map-item {
    margin-top: 7px;
}

.jm-map-item:hover,
.jm-map-item.active {
    border-color: rgba(11,118,110,.28);
    background: #f5faf9;
}

.jm-map-item img {
    width: 88px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.jm-map-item h3 {
    margin: 2px 0 5px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jm-map-item p {
    margin: 0;
    color: var(--jm-muted);
    font-size: 10px;
}

.jm-map-item strong {
    display: block;
    margin-top: 7px;
    color: var(--jm-primary);
    font-size: 12px;
}

.jm-map-canvas {
    position: relative;
    min-width: 0;
}

#jmMap {
    width: 100%;
    height: 100%;
}

.jm-map-location-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 5;
    width: 46px;
    height: 46px;
    color: var(--jm-primary);
    background: #fff;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 10px 26px rgba(17,37,48,.16);
}

.jm-map-popup {
    min-width: 210px;
    padding: 12px;
}

.jm-map-popup strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.jm-map-popup p {
    margin: 0 0 8px;
    color: #6a777e;
    font-size: 11px;
}

.jm-map-popup a {
    color: var(--jm-primary);
    font-size: 11px;
    font-weight: 800;
}

/* 검색 */
.jm-search-result-box {
    margin-bottom: 25px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 22px;
}

.jm-search-result-box form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.jm-search-result-box input {
    min-width: 0;
    height: 54px;
    padding: 0 18px;
    border: 1px solid var(--jm-line);
    border-radius: 14px;
    outline: 0;
}

.jm-search-result-box button {
    padding: 0 24px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 14px;
    font-weight: 850;
}

.jm-search-section + .jm-search-section {
    margin-top: 45px;
}

.jm-search-section h2 {
    margin: 0 0 16px;
    font-size: 23px;
    letter-spacing: -.8px;
}

.jm-search-section h2 span {
    color: var(--jm-primary);
    font-size: 14px;
}

@media (max-width: 1180px) {
    .jm-gnb {
        gap: 15px;
    }

    .jm-gnb a {
        font-size: 12px;
    }

    .jm-header__cta {
        display: none !important;
    }

    .jm-region-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .jm-card-grid,
    .jm-card-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pc-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .jm-shell {
        width: min(calc(100% - 28px), var(--jm-shell));
    }

    .jm-header__inner {
        min-height: 62px;
        gap: 12px;
    }

    .jm-header__inner .jm-logo {
        flex: 1 1 auto;
        justify-content: center;
    }

    .jm-header__inner .jm-logo__mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .jm-header__inner .jm-logo__text strong {
        font-size: 18px;
    }

    .jm-header__inner .jm-logo__text small {
        display: none;
    }

    .jm-mobile-menu,
    .jm-search-toggle {
        width: 39px;
        height: 39px;
        background: transparent;
        border: 0;
    }

    .jm-drawer-dim {
        position: fixed;
        inset: 0;
        z-index: 1490;
        background: rgba(7,26,28,.56);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
    }

    .jm-drawer-dim.open {
        opacity: 1;
        visibility: visible;
    }

    .jm-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1500;
        width: min(86vw, 350px);
        display: block !important;
        padding: 18px;
        overflow-y: auto;
        background: #fff;
        transform: translateX(-105%);
        transition: transform .25s ease;
        box-shadow: 18px 0 45px rgba(8,30,31,.22);
    }

    .jm-drawer.open {
        transform: translateX(0);
    }

    .jm-drawer__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .jm-drawer__top > button {
        width: 39px;
        height: 39px;
        background: #f4f7f7;
        border: 0;
        border-radius: 12px;
    }

    .jm-drawer__search {
        display: grid;
        grid-template-columns: 1fr 42px;
        gap: 7px;
        margin: 22px 0 16px;
    }

    .jm-drawer__search input {
        min-width: 0;
        height: 43px;
        padding: 0 13px;
        background: #f4f7f7;
        border: 1px solid var(--jm-line);
        border-radius: 12px;
    }

    .jm-drawer__search button {
        color: #fff;
        background: var(--jm-primary);
        border: 0;
        border-radius: 12px;
    }

    .jm-drawer__nav {
        display: flex;
        flex-direction: column;
    }

    .jm-drawer__nav a {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 14px 5px;
        border-bottom: 1px solid #edf1f2;
        font-size: 14px;
        font-weight: 800;
    }

    .jm-drawer__nav i {
        width: 25px;
        color: var(--jm-primary);
        text-align: center;
    }

    .jm-drawer__account {
        display: flex;
        gap: 8px;
        margin-top: 18px;
    }

    .jm-drawer__account a {
        flex: 1 1 0;
        padding: 11px;
        text-align: center;
        background: #f4f7f7;
        border-radius: 11px;
        font-size: 12px;
        font-weight: 800;
    }

    .jm-drawer__kakao {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding: 13px;
        color: #3c3300;
        background: var(--jm-yellow);
        border-radius: 12px;
        font-size: 12px;
        font-weight: 900;
    }

    .jm-search-layer form > div {
        grid-template-columns: 22px 1fr;
    }

    .jm-search-layer button[type="submit"] {
        grid-column: 1 / -1;
    }

    .jm-hero {
        padding: 38px 0 32px;
    }

    .jm-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jm-hero h1 {
        letter-spacing: -2.5px;
    }

    .jm-hero-panel {
        max-width: 620px;
    }

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

    .jm-trustbar article:nth-child(2) {
        border-right: 0;
    }

    .jm-trustbar article:nth-child(-n+2) {
        border-bottom: 1px solid var(--jm-line);
    }

    .jm-section {
        padding: 56px 0;
    }

    .jm-region-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jm-card-grid,
    .jm-card-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jm-info-grid {
        grid-template-columns: 1fr;
    }

    .jm-seo-box {
        grid-template-columns: 1fr;
    }

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

    .jm-footer__notice {
        flex-direction: column;
    }

    .jm-floating-kakao {
        right: 14px;
        bottom: 78px;
        width: 49px;
        height: 49px;
        border-radius: 17px;
    }

    .jm-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1250;
        min-height: 63px;
        align-items: center;
        justify-content: space-around;
        padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.96);
        border-top: 1px solid var(--jm-line);
        box-shadow: 0 -10px 30px rgba(17,37,48,.08);
        backdrop-filter: blur(16px);
    }

    .jm-bottom-nav a {
        min-width: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #718087;
        font-size: 9px;
        font-weight: 800;
    }

    .jm-bottom-nav i {
        font-size: 17px;
    }

    .jm-bottom-nav a:first-child,
    .jm-bottom-nav a:last-child {
        color: var(--jm-primary);
    }

    .jm-page-content {
        padding-bottom: 95px;
    }

    .jm-filter-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .jm-filter-submit {
        grid-column: span 2;
    }

    .jm-map-page {
        height: auto;
        min-height: 0;
        display: block;
        padding-bottom: 64px;
    }

    .jm-map-sidebar {
        height: auto;
        border-right: 0;
    }

    .jm-map-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 12px 14px;
    }

    .jm-map-item {
        flex: 0 0 280px;
    }

    .jm-map-canvas {
        height: 58vh;
        min-height: 430px;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 62px;
    }

    .jm-shell {
        width: min(calc(100% - 24px), var(--jm-shell));
    }

    .jm-hero__eyebrow {
        font-size: 10px;
    }

    .jm-hero h1 {
        font-size: 37px;
        line-height: 1.12;
        letter-spacing: -2.2px;
    }

    .jm-hero__lead {
        font-size: 14px;
    }

    .jm-hero-search {
        grid-template-columns: 22px 1fr;
    }

    .jm-hero-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .jm-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .jm-btn {
        min-width: 0;
        padding: 0 12px;
        font-size: 12px;
    }

    .jm-hero-panel {
        padding: 12px;
        border-radius: 25px;
    }

    .jm-hero-panel__image {
        height: 210px;
        border-radius: 18px;
    }

    .jm-hero-panel__stats {
        gap: 7px;
    }

    .jm-hero-stat {
        padding: 13px 5px;
    }

    .jm-hero-stat strong {
        font-size: 18px;
    }

    .jm-trustbar article {
        min-height: 72px;
        padding: 13px 11px;
        gap: 9px;
    }

    .jm-trustbar i {
        width: 34px;
        height: 34px;
    }

    .jm-trustbar strong {
        font-size: 11px;
    }

    .jm-trustbar span {
        font-size: 9px;
    }

    .jm-section {
        padding: 45px 0;
    }

    .jm-section-head {
        align-items: flex-start;
    }

    .jm-section-head h2 {
        font-size: 27px;
    }

    .jm-section-head p {
        font-size: 12px;
    }

    .jm-more {
        padding: 9px 10px;
        font-size: 10px;
    }

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

    .jm-service-card {
        min-height: 225px;
        padding: 24px;
        border-radius: 23px;
    }

    .jm-service-card h3 {
        font-size: 24px;
    }

    .jm-region-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .jm-region-card {
        min-height: 95px;
        padding: 14px;
        border-radius: 16px;
    }

    .jm-card-rail {
        display: flex;
        gap: 13px;
        overflow-x: auto;
        margin-inline: -12px;
        padding: 4px 12px 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .jm-card-rail::-webkit-scrollbar {
        display: none;
    }

    .jm-card-rail .jm-shop-card {
        flex: 0 0 82vw;
        max-width: 330px;
        scroll-snap-align: start;
    }

    .jm-card-grid {
        grid-template-columns: 1fr;
    }

    .jm-shop-card__media {
        height: 210px;
    }

    .jm-info-card,
    .jm-seo-copy,
    .jm-faq,
    .jm-community-card {
        padding: 21px;
        border-radius: 19px;
    }

    .jm-community-grid {
        grid-template-columns: 1fr;
    }

    .jm-footer {
        padding: 42px 0 92px;
    }

    .jm-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px;
    }

    .jm-footer__brand,
    .jm-footer__contact {
        grid-column: 1 / -1;
    }

    .jm-page-hero {
        padding: 36px 0 26px;
    }

    .jm-page-hero__inner {
        display: block;
    }

    .jm-page-hero h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .jm-filter-panel {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .jm-filter-submit {
        grid-column: auto;
    }

    .jm-results-meta {
        align-items: flex-start;
    }

    .jm-search-result-box {
        padding: 15px;
    }

    .jm-search-result-box form {
        grid-template-columns: 1fr;
    }

    .jm-search-result-box button {
        height: 48px;
    }
}

/* =========================================================
   V3 clean URL / operational route pages
   ========================================================= */
.jm-header .jm-shell {
    width: min(calc(100% - 44px), 1360px);
}

.jm-header__inner {
    gap: 24px;
}

.jm-gnb {
    gap: 4px;
    justify-content: flex-start;
}

.jm-gnb > a,
.jm-gnb__item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 27px 12px 25px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.35px;
}

.jm-gnb__item {
    position: relative;
    flex: 0 0 auto;
}

.jm-gnb__item > a i {
    font-size: 9px;
    transition: transform .2s ease;
}

.jm-gnb__item:hover > a i,
.jm-gnb__item:focus-within > a i {
    transform: rotate(180deg);
}

.jm-gnb__dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    z-index: 1250;
    width: 330px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(10, 35, 43, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.jm-gnb__item:hover .jm-gnb__dropdown,
.jm-gnb__item:focus-within .jm-gnb__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jm-gnb__dropdown > a {
    display: block;
    padding: 14px 15px;
    background: var(--jm-primary-soft);
    border-radius: 14px;
}

.jm-gnb__dropdown > a strong,
.jm-gnb__dropdown > a span {
    display: block;
}

.jm-gnb__dropdown > a strong {
    color: var(--jm-primary-dark);
    font-size: 14px;
}

.jm-gnb__dropdown > a span {
    margin-top: 3px;
    color: var(--jm-muted);
    font-size: 11px;
}

.jm-gnb__dropdown > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.jm-gnb__dropdown > div a {
    padding: 9px 7px;
    color: #4a5962;
    background: #f7f9fa;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 750;
    text-align: center;
}

.jm-gnb__dropdown > div a:hover {
    color: var(--jm-primary-dark);
    background: var(--jm-primary-soft);
}

.jm-nearby-link {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    color: #43535d;
    background: #f4f7f7;
    border: 1px solid var(--jm-line);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.jm-nearby-link.active,
.jm-nearby-link:hover {
    color: var(--jm-primary-dark);
    background: var(--jm-primary-soft);
    border-color: #c9e5e1;
}

.jm-drawer__regions {
    margin-top: 18px;
    padding: 15px;
    background: #f6f9f9;
    border-radius: 16px;
}

.jm-drawer__regions strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.jm-drawer__regions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.jm-drawer__regions a {
    padding: 7px 10px;
    color: #52616a;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 750;
}

.jm-route-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #123f3c 0%, #0b6761 58%, #11877e 100%);
}

.jm-route-hero.is-homecare {
    background: linear-gradient(135deg, #263657 0%, #405f91 58%, #5c7fb4 100%);
}

.jm-route-hero--region {
    background: linear-gradient(135deg, #183a45 0%, #1e6971 55%, #2f8e8a 100%);
}

.jm-route-hero--nearby {
    background: linear-gradient(135deg, #113d3e 0%, #0c766e 55%, #11a092 100%);
}

.jm-route-hero--search {
    background: linear-gradient(135deg, #1d3038 0%, #38545d 100%);
}

.jm-route-hero::before,
.jm-route-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.jm-route-hero::before {
    width: 340px;
    height: 340px;
    top: -190px;
    right: 3%;
    background: rgba(255,255,255,.07);
}

.jm-route-hero::after {
    width: 170px;
    height: 170px;
    right: 24%;
    bottom: -110px;
    background: rgba(255,255,255,.06);
}

.jm-route-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 52px;
    padding-bottom: 52px;
}

.jm-route-hero__copy {
    max-width: 760px;
}

.jm-route-hero__copy h1 {
    margin: 7px 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -2.2px;
}

.jm-route-hero__copy > p:last-of-type {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.8;
}

.jm-route-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.jm-route-hero .jm-btn--light {
    color: #fff;
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.22);
}

.jm-route-hero .jm-btn--primary {
    color: var(--jm-primary-dark);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.jm-route-hero__summary {
    width: 190px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.jm-route-hero__summary span,
.jm-route-hero__summary small {
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
}

.jm-route-hero__summary strong {
    margin: 8px 0 3px;
    font-size: 46px;
    line-height: 1;
}

.jm-route-hero__summary strong i {
    font-size: 38px;
}

.jm-route-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--jm-muted);
    font-size: 12px;
}

.jm-route-breadcrumb a:hover {
    color: var(--jm-primary);
}

.jm-route-breadcrumb i {
    font-size: 8px;
}

.jm-region-link-panel,
.jm-route-toolbar,
.jm-nearby-controls,
.jm-search-page__form {
    background: #fff;
    border: 1px solid var(--jm-line);
    box-shadow: 0 10px 32px rgba(17,37,48,.05);
}

.jm-region-link-panel {
    padding: 24px;
    border-radius: 22px;
}

.jm-region-link-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.jm-region-link-panel__head span,
.jm-region-directory__head > span,
.jm-route-guide > div:first-child > span {
    color: var(--jm-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.jm-region-link-panel__head h2,
.jm-region-directory__head h2,
.jm-route-guide > div:first-child h2 {
    margin: 3px 0 0;
    font-size: 22px;
    letter-spacing: -.9px;
}

.jm-region-link-panel__head > a {
    color: var(--jm-primary);
    font-size: 12px;
    font-weight: 800;
}

.jm-region-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.jm-region-link-list a {
    padding: 9px 13px;
    color: #52616b;
    background: #f5f8f8;
    border: 1px solid #edf1f2;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 750;
}

.jm-region-link-list a:hover,
.jm-region-link-list a.active {
    color: #fff;
    background: var(--jm-primary);
    border-color: var(--jm-primary);
}

.jm-route-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 18px;
}

.jm-route-toolbar__title {
    display: flex;
    align-items: baseline;
    gap: 9px;
    white-space: nowrap;
}

.jm-route-toolbar__title strong {
    font-size: 18px;
}

.jm-route-toolbar__title span {
    color: var(--jm-primary);
    font-size: 12px;
    font-weight: 800;
}

.jm-route-search {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 130px auto;
    gap: 8px;
}

.jm-route-search label,
.jm-search-page__form label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    background: #f6f8f9;
    border: 1px solid var(--jm-line);
    border-radius: 12px;
}

.jm-route-search label i,
.jm-search-page__form label i {
    color: #94a0a7;
}

.jm-route-search input,
.jm-route-search select,
.jm-search-page__form input,
.jm-search-page__form select {
    min-width: 0;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
}

.jm-route-search select,
.jm-search-page__form select {
    padding: 0 12px;
    background: #f6f8f9;
    border: 1px solid var(--jm-line);
    border-radius: 12px;
}

.jm-route-search button,
.jm-search-page__form button,
.jm-nearby-controls > button {
    min-height: 44px;
    padding: 0 18px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 12px;
    font-weight: 850;
}

.jm-route-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jm-route-empty {
    padding: 70px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 24px;
}

.jm-route-empty > i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    color: var(--jm-primary);
    background: var(--jm-primary-soft);
    border-radius: 20px;
    font-size: 22px;
}

.jm-route-empty h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.8px;
}

.jm-route-empty p {
    margin: 8px 0 0;
    color: var(--jm-muted);
}

.jm-route-empty > div {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.jm-route-empty--compact {
    padding: 36px 18px;
    border: 0;
    box-shadow: none;
}

.jm-route-empty--compact h2 {
    font-size: 17px;
}

.jm-route-guide {
    margin-top: 44px;
    padding: 30px;
    color: #fff;
    background: #183b3d;
    border-radius: 26px;
}

.jm-route-guide > div:first-child > span {
    color: #77d3ca;
}

.jm-route-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 20px;
}

.jm-route-guide__grid article {
    padding: 19px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
}

.jm-route-guide__grid article > i {
    color: #7bd5cd;
    font-size: 18px;
}

.jm-route-guide__grid strong {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.jm-route-guide__grid p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.7;
}

.jm-region-city-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jm-region-city-cards > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 170px;
    padding: 28px;
    color: #fff;
    background: linear-gradient(135deg, #123f3c, #0b766e);
    border-radius: 24px;
    box-shadow: var(--jm-shadow);
}

.jm-region-city-cards > a:nth-child(2),
.jm-region-city-cards > a:nth-child(4) {
    background: linear-gradient(135deg, #314665, #5475a7);
}

.jm-region-city-cards span {
    color: rgba(255,255,255,.65);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.jm-region-city-cards h2 {
    margin: 6px 0 4px;
    font-size: 25px;
    letter-spacing: -1px;
}

.jm-region-city-cards p {
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: 12px;
}

.jm-region-city-cards > a > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(255,255,255,.13);
    border-radius: 14px;
}

.jm-region-directory {
    margin-top: 46px;
}

.jm-region-directory__head p {
    margin: 7px 0 0;
    color: var(--jm-muted);
    font-size: 13px;
}

.jm-region-directory__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.jm-region-directory__card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(17,37,48,.05);
}

.jm-region-directory__card > div:first-child span {
    color: var(--jm-muted);
    font-size: 10px;
    font-weight: 800;
}

.jm-region-directory__card h3 {
    margin: 3px 0 14px;
    font-size: 21px;
    letter-spacing: -.7px;
}

.jm-region-directory__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.jm-region-directory__links a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px;
    color: #44535c;
    background: #f6f8f9;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 750;
}

.jm-region-directory__links a:last-child {
    color: #405779;
    background: #eef3fa;
}

.jm-region-directory__links b {
    margin-left: auto;
    color: var(--jm-primary);
}

.jm-nearby-controls {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
}

.jm-nearby-controls label {
    display: grid;
    gap: 6px;
}

.jm-nearby-controls label span {
    color: var(--jm-muted);
    font-size: 10px;
    font-weight: 800;
}

.jm-nearby-controls select {
    height: 44px;
    padding: 0 13px;
    background: #f6f8f9;
    border: 1px solid var(--jm-line);
    border-radius: 12px;
    outline: 0;
}

.jm-results-meta > span a {
    color: var(--jm-primary);
    font-weight: 800;
}

.jm-search-page__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px auto;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
}

.jm-map-route-page {
    height: min(760px, calc(100vh - 110px));
    min-height: 620px;
    display: grid;
    grid-template-columns: 390px minmax(0,1fr);
    background: #eef2f3;
}

.jm-map-route-sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid var(--jm-line);
    box-shadow: 8px 0 30px rgba(17,37,48,.06);
    z-index: 3;
}

.jm-map-route-sidebar__head {
    padding: 24px;
    border-bottom: 1px solid var(--jm-line);
}

.jm-map-route-sidebar__head h1 {
    margin: 3px 0 7px;
    font-size: 25px;
    letter-spacing: -1px;
}

.jm-map-route-sidebar__head > p:not(.jm-page-hero__eyebrow) {
    margin: 0;
    color: var(--jm-muted);
    font-size: 12px;
}

.jm-map-route-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    margin-top: 17px;
}

.jm-map-route-search label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: #f6f8f9;
    border: 1px solid var(--jm-line);
    border-radius: 12px;
}

.jm-map-route-search input {
    min-width: 0;
    width: 100%;
    height: 43px;
    background: transparent;
    border: 0;
    outline: 0;
}

.jm-map-route-search button {
    padding: 0 16px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 12px;
    font-weight: 800;
}

.jm-map-route-quick {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    overflow-x: auto;
}

.jm-map-route-quick button,
.jm-map-route-quick a {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: #5a6870;
    background: #f6f8f9;
    border: 1px solid var(--jm-line);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 750;
}

.jm-map-route-quick button.active {
    color: #fff;
    background: var(--jm-primary);
    border-color: var(--jm-primary);
}

.jm-map-route-count {
    padding: 12px 20px;
    color: var(--jm-muted);
    background: #fbfcfc;
    border-bottom: 1px solid var(--jm-line);
    font-size: 11px;
}

.jm-map-route-count strong {
    color: var(--jm-primary);
}

.jm-map-route-list {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

.jm-map-route-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: .18s ease;
}

.jm-map-route-item + .jm-map-route-item {
    margin-top: 5px;
}

.jm-map-route-item:hover,
.jm-map-route-item.active {
    background: #f3f9f8;
    border-color: #d5ebe8;
}

.jm-map-route-item > img {
    width: 82px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background: #edf1f2;
}

.jm-map-route-item > div > span {
    color: var(--jm-primary);
    font-size: 9px;
    font-weight: 850;
}

.jm-map-route-item h3 {
    margin: 2px 0 3px;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jm-map-route-item p {
    margin: 0;
    color: var(--jm-muted);
    font-size: 10px;
}

.jm-map-route-item strong {
    display: block;
    margin-top: 5px;
    color: var(--jm-accent);
    font-size: 12px;
}

.jm-map-route-item > i {
    color: #aab4b9;
    font-size: 10px;
}

.jm-map-route-canvas {
    position: relative;
    min-width: 0;
}

#jmMap {
    width: 100%;
    height: 100%;
}

.jm-map-location-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--jm-primary);
    background: #fff;
    border: 1px solid var(--jm-line);
    border-radius: 17px;
    box-shadow: var(--jm-shadow);
}

.jm-map-list-toggle {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    align-items: center;
    gap: 7px;
    padding: 12px 17px;
    color: #fff;
    background: var(--jm-primary);
    border: 0;
    border-radius: 99px;
    transform: translateX(-50%);
    box-shadow: 0 12px 30px rgba(11,118,110,.28);
    font-size: 12px;
    font-weight: 850;
}

.jm-map-popup {
    min-width: 180px;
    padding: 12px 14px;
}

.jm-map-popup strong {
    font-size: 14px;
}

.jm-map-popup p {
    margin: 3px 0 8px;
    color: #76838b;
    font-size: 11px;
}

.jm-map-popup a {
    color: var(--jm-primary);
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 1280px) {
    .jm-header .jm-shell { width: min(calc(100% - 30px), 1280px); }
    .jm-header__inner { gap: 14px; }
    .jm-gnb > a, .jm-gnb__item > a { padding-left: 8px; padding-right: 8px; font-size: 13px; }
    .jm-nearby-link span { display: none; }
    .jm-route-card-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 1050px) {
    .jm-gnb { gap: 0; }
    .jm-gnb > a, .jm-gnb__item > a { font-size: 12px; }
    .jm-logo__text small { display: none; }
    .jm-header__cta { display: none !important; }
    .jm-region-directory__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
    .jm-route-hero__inner {
        min-height: 0;
        padding-top: 38px;
        padding-bottom: 38px;
    }
    .jm-route-hero__summary { display: none; }
    .jm-route-hero__copy h1 { font-size: 34px; letter-spacing: -1.5px; }
    .jm-route-hero__copy > p:last-of-type { font-size: 14px; }
    .jm-route-toolbar { align-items: stretch; flex-direction: column; }
    .jm-route-search { grid-template-columns: 1fr 120px auto; }
    .jm-route-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .jm-region-city-cards { grid-template-columns: 1fr; }
    .jm-map-route-page { height: calc(100vh - 62px); min-height: 600px; grid-template-columns: 1fr; }
    .jm-map-route-sidebar {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 5;
        max-height: 70%;
        border: 0;
        border-radius: 22px;
        box-shadow: 0 18px 60px rgba(12,35,42,.24);
        transform: translateY(calc(100% + 30px));
        transition: transform .25s ease;
        overflow: hidden;
    }
    .jm-map-route-sidebar.open { transform: translateY(0); }
    .jm-map-route-sidebar__head { padding: 18px; }
    .jm-map-route-sidebar__head h1 { font-size: 20px; }
    .jm-map-location-btn { bottom: 78px; }
}

@media (max-width: 640px) {
    .jm-route-hero__copy h1 { font-size: 30px; }
    .jm-route-hero__actions .jm-btn { flex: 1 1 auto; justify-content: center; }
    .jm-region-link-panel { padding: 18px; }
    .jm-region-link-panel__head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .jm-route-search { grid-template-columns: 1fr; }
    .jm-route-search button { min-height: 46px; }
    .jm-route-card-grid { grid-template-columns: 1fr; }
    .jm-route-guide { padding: 22px; }
    .jm-route-guide__grid { grid-template-columns: 1fr; }
    .jm-region-city-cards > a { min-height: 140px; padding: 22px; }
    .jm-region-city-cards h2 { font-size: 21px; }
    .jm-region-directory__grid { grid-template-columns: 1fr; }
    .jm-nearby-controls { grid-template-columns: 1fr; }
    .jm-search-page__form { grid-template-columns: 1fr; }
    .jm-route-empty { padding: 52px 18px; }
    .jm-route-empty > div { flex-direction: column; }
    .jm-map-route-page { height: calc(100vh - 62px); }
}
.jm-gnb__dropdown a::after { display: none !important; }
.jm-gnb__dropdown a { position: static; white-space: normal; }
