:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-soft: #f7f9fc;
    --text: #111827;
    --muted: #667085;
    --line: rgba(15, 23, 42, 0.08);
    --brand: #1463ff;
    --brand-dark: #0f4fd1;
    --accent: #00c2a8;
    --accent-soft: rgba(20, 99, 255, 0.10);
    --warning-soft: rgba(0, 194, 168, 0.12);
    --shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
    --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.05);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 99, 255, 0.10), transparent 26%),
        radial-gradient(circle at top right, rgba(0, 194, 168, 0.08), transparent 24%),
        linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    line-height: 1.6;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.wrap {
    width: min(1280px, calc(100% - 28px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(244, 247, 251, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--text);
}

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

.gnb a {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.gnb a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.global-search-bar {
    padding: 10px 0 0;
}

.global-search-form {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.global-search-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

.global-search-copy p {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.global-search-field {
    display: flex;
    gap: 10px;
}

.global-search-field select,
.global-search-field input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    font-size: 14px;
    color: var(--text);
    outline: none;
}

.global-search-field select,
.hero-search select,
.inline-search select {
    flex: 0 0 170px;
    width: 170px;
    cursor: pointer;
}

.global-search-field button {
    flex: 0 0 auto;
    min-width: 90px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, #3b82f6 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.page-content {
    padding: 14px 0 44px;
}

.page-content .wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.footer {
    --footer-bg: #111827;
    --footer-text: #94a3b8;
    --footer-soft: #cbd5e1;
    --footer-border: #334155;
    --footer-dark: #0f172a;
    --footer-hover: #475569;
    --footer-primary: #3b82f6;

    margin-top: 48px;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3.25rem 0 2rem;
    line-height: 1.6;
}

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

.footer-logo {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--footer-soft);
}

.footer-links h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.cc-main-name {
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.biz-info-list,
.cs-info-list {
    font-size: 0.85rem;
}

.work-time {
    font-size: 0.85rem;
}

.cc-note {
    margin-top: 1.4rem;
    padding-top: 0.9rem;
    border-top: 1px dashed var(--footer-border);
}

.cc-note p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--footer-soft);
}

.cc-toggle-btn {
    background: var(--footer-border);
    color: #fff;
    border: 0;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.cc-toggle-btn:hover {
    background: var(--footer-hover);
}

.cc-slide-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--footer-dark);
    border-radius: 8px;
    margin-top: 10px;
}

.cc-form-box {
    padding: 15px;
    font-size: 0.8rem;
}

.cc-form-text {
    background: #1e293b;
    border: 1px solid var(--footer-border);
    padding: 10px;
    border-radius: 6px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.cc-copy-btn {
    width: 100%;
    padding: 8px;
    background: var(--footer-primary);
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.cc-copy-btn:hover {
    opacity: 0.92;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--footer-border);
    font-size: 0.8rem;
    color: #64748b;
}

.copyright strong {
    color: #94a3b8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--brand) 0%, #3b82f6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 99, 255, 0.22);
}

.btn:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2563eb 100%);
}

.btn-secondary {
    background: #eef3ff;
    color: var(--brand);
    box-shadow: none;
}

.section-kicker,
.hero-kicker,
.editorial-note-label,
.card-index,
.summary-card span,
.metric-label,
.detail-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand);
}

.content-section + .content-section {
    margin-top: 18px;
}

.hero-section,
.list-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.16), transparent 18%),
        linear-gradient(135deg, #0f172a 0%, #13254d 52%, #1463ff 100%);
    color: #f8fbff;
}

.hero-copy {
    width: 100%;
    max-width: 760px;
}

.hero-section::after,
.list-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -110px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.28), transparent 70%);
    pointer-events: none;
}

.hero-copy h2,
.list-hero h2,
.detail-hero h2 {
    max-width: 100%;
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.hero-copy p,
.list-hero p,
.detail-hero p {
    margin-top: 14px;
    max-width: 560px;
    font-size: 12px;
    color: rgba(248, 251, 255, 0.76);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(248, 251, 255, 0.64);
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: rgba(248, 251, 255, 0.84);
    margin-bottom: 8px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-search,
.inline-search {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.hero-search select,
.inline-search select,
.hero-search input,
.inline-search input {
    width: 100%;
    min-width: 0;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 16px;
    font-size: 14px;
    color: var(--text);
    outline: none;
}

.hero-search button,
.inline-search button {
    flex: 0 0 auto;
    min-width: 104px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #00c2a8 0%, #3dd9c3 100%);
    color: #062d27;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.hero-panel,
.list-summary {
    display: grid;
    gap: 14px;
    align-content: start;
}

.editorial-note,
.detail-aside-note,
.metric-card,
.search-panel,
.feature-card,
.biz-card,
.summary-card,
.detail-table-card,
.side-card,
.empty-state {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.editorial-note,
.detail-aside-note {
    padding: 20px;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #f8fbff;
    box-shadow: none;
}

.editorial-note-label {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(248, 251, 255, 0.62);
}

.editorial-note p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(248, 251, 255, 0.84);
}

.hero-facts {
    display: grid;
    gap: 14px;
}

.metric-card {
    padding: 18px;
}

.metric-card.accent {
    background:
        linear-gradient(180deg, rgba(20, 99, 255, 0.06) 0%, rgba(255,255,255,1) 100%);
}

.metric-label {
    color: var(--muted);
}

.metric-value {
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.metric-desc,
.metric-list span,
.side-copy,
.empty-state p,
.biz-card p,
.feature-card p {
    color: var(--muted);
    font-size: 13px;
}

.metric-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.search-panel {
    padding: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.section-head h3 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-link {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
}

.biz-card-grid,
.feature-grid,
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.biz-card,
.feature-card,
.summary-card,
.detail-table-card,
.side-card,
.empty-state {
    padding: 18px;
}

.biz-card {
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.biz-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.10);
    border-color: rgba(20, 99, 255, 0.16);
}

.biz-card strong,
.feature-card strong,
.summary-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.biz-card p {
    margin: 10px 0 14px;
    line-height: 1.6;
}

.editorial-card {
    min-height: 214px;
}

.card-index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--muted);
}

.card-meta-line {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    margin-bottom: 14px;
    border-top: 1px solid #eef2f7;
}

.card-meta-line span,
.card-meta-line em {
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
}

.card-meta-line em {
    color: var(--muted);
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.feature-card p {
    margin-top: 10px;
}

.summary-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.summary-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

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

.list-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.mini-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.mini-badge.gray {
    background: #eff4fa;
    color: #475467;
}

.mini-badge.blue {
    background: #eaf1ff;
    color: var(--brand);
}

.mini-badge.green {
    background: #e8fbf7;
    color: #0b8d7c;
}

.mini-badge.orange {
    background: #ecfffb;
    color: #0b8d7c;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.pagination a {
    min-width: 40px;
    padding: 9px 12px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.pagination a.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 16px;
}

.detail-table {
    display: grid;
}

.detail-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-label {
    color: var(--muted);
}

.detail-value {
    font-size: 14px;
    word-break: break-all;
}

.detail-value a {
    color: var(--brand);
}

.status-box,
.status-error {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 13px;
}

.status-result {
    margin-top: 14px;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e8eef7;
    border-radius: 16px;
    background: #fff;
}

.status-table th,
.status-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
    line-height: 1.5;
}

.status-table tr:last-child th,
.status-table tr:last-child td {
    border-bottom: 0;
}

.status-table th {
    width: 220px;
    color: var(--muted);
    font-weight: 800;
    background: #f8fbff;
}

.status-table td {
    color: var(--text);
    font-weight: 700;
}

.empty-page {
    padding: 56px 20px;
    text-align: center;
}

.empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eef3ff;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
}

.empty-page h2 {
    margin-top: 16px;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.empty-page p {
    max-width: 640px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 14px;
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.muted {
    color: #98a2b3;
}

.biz-detail-page {
    display: grid;
    gap: 16px;
}

.detail-stage,
.detail-section-card {
    border-radius: 26px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.detail-stage {
    display: block;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(20, 99, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.biz-detail-title-area h2 {
    margin-top: 6px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-stage-copy {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 880px;
}

.detail-top-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.detail-top-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e7edf5;
}

.detail-top-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.detail-top-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.biz-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-summary-card {
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: #0f172a;
    color: #f8fbff;
}

.detail-summary-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 251, 255, 0.62);
}

.detail-summary-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    list-style: none;
}

.detail-summary-list li {
    display: grid;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.detail-summary-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.detail-summary-list span {
    font-size: 12px;
    color: rgba(248, 251, 255, 0.62);
}

.detail-summary-list strong {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.detail-fact-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.detail-fact-card {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.detail-fact-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.detail-fact-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.detail-section-card {
    padding: 22px;
}

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

.detail-section-head h3 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.biz-info-table-wrap {
    overflow: hidden;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fff;
}

.biz-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.biz-info-table th,
.biz-info-table td {
    padding: 15px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    font-size: 13px;
    line-height: 1.55;
}

.biz-info-table tr:last-child th,
.biz-info-table tr:last-child td {
    border-bottom: 0;
}

.biz-info-table th:last-child,
.biz-info-table td:last-child {
    border-right: 0;
}

.biz-info-table th {
    width: 13%;
    background: #f8fbff;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.biz-info-table td {
    width: 37%;
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
    background: #fff;
}

.biz-info-table td a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.biz-info-table td.cell-address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-info-table td.cell-address-full {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.biz-status-panel {
    padding: 4px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.biz-status-head h3 {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.map-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.map-box {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.map-title {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.map-frame {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e7edf5;
}

.map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    background: #f8fbff;
}

@media (max-width: 980px) {
    .hero-section,
    .list-hero,
    .detail-hero,
    .detail-layout,
    .biz-card-grid,
    .feature-grid,
    .summary-grid,
    .list-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h2,
    .list-hero h2,
    .detail-hero h2 {
        max-width: none;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .global-search-form,
    .detail-fact-strip,
    .detail-top-cards,
    .map-two-col {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .wrap {
        width: min(100%, calc(100% - 20px));
    }

    .site-header .wrap {
        min-height: 66px;
    }

    .page-content {
        padding: 12px 0 36px;
    }

    .hero-section,
    .list-hero,
    .detail-hero {
        padding: 20px;
    }

    .global-search-form,
    .detail-stage,
    .detail-section-card {
        padding: 18px;
    }

    .hero-search,
    .inline-search,
    .global-search-field,
    .empty-actions,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search button,
    .inline-search button,
    .global-search-field button,
    .btn {
        width: 100%;
    }

    .global-search-field select,
    .hero-search select,
    .inline-search select {
        width: 100%;
        flex-basis: auto;
    }

    .section-head h3 {
        font-size: 22px;
    }

    .biz-detail-title-area h2 {
        font-size: 24px;
    }

    .biz-card strong,
    .feature-card strong,
    .summary-card strong {
        font-size: 17px;
    }

    .metric-value {
        font-size: 30px;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map-frame {
        height: 280px;
    }

    .status-table th,
    .status-table td {
        display: block;
        width: 100%;
    }

    .status-table th {
        padding-bottom: 6px;
        border-bottom: 0;
    }

    .status-table td {
        padding-top: 0;
    }

    .biz-info-table,
    .biz-info-table tbody,
    .biz-info-table tr,
    .biz-info-table th,
    .biz-info-table td {
        display: block;
        width: 100%;
    }

    .biz-info-table th,
    .biz-info-table td {
        border-right: 0;
    }

    .biz-info-table th {
        padding-bottom: 6px;
        border-bottom: 0;
    }

    .biz-info-table td {
        padding-top: 0;
    }

    .biz-info-table td.cell-address {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }
}
