/* 기본 설정 */
* {
    box-sizing: border-box;
}

:root {
    --primary: #1976d2;
    --primary-2: #1c9dd9;
    --accent: #ffe082;
    --ink: #1f2933;
    --muted: #5f6b7a;
    --card: #fff;
    --border: #e9eef5;
    --bg: #f5f7fb;
}

body {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(1.9rem, 2.2vw + 1.1rem, 3rem);
    line-height: 1.3;
    margin: 0 0 14px;
}

h2 {
    font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.25rem);
    line-height: 1.32;
    margin: 0 0 12px;
    color: #1976d2;
}

h3 {
    font-size: clamp(1.2rem, 0.9vw + 1rem, 1.5rem);
    line-height: 1.32;
    margin: 0 0 10px;
}

h4 {
    font-size: 1.05rem;
    margin: 0 0 8px;
}

p {
    margin: 0 0 14px;
    font-size: 1rem;
    color: var(--muted);
}

.subtitle {
    font-size: 1.02rem;
    line-height: 1.65;
}

.eyebrow {
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

img {
    max-width: 100%;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: linear-gradient(90deg, #1976d2, #1c9dd9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 72px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
}

.center-name {
    font-weight: 700;
    font-size: 1.15rem;
}

.tagline {
    font-size: 0.95rem;
    opacity: 0.9;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 6px 4px;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ffe082;
    border-radius: 2px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: none;
    color: #1f2933;
    overflow: hidden;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* 모바일 사이드 메뉴 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: #1976d2;
    color: white;
    padding: 25px;
    transition: right 0.35s ease;
    z-index: 99999;
    box-shadow: -4px 0 16px rgba(0,0,0,0.18);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .close-btn {
    font-size: 1.9rem;
    cursor: pointer;
    text-align: right;
    margin-bottom: 25px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    padding: 14px 0;
    font-size: 1.1rem;
}

.mobile-menu a {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.m-dropdown > a::after {
    content: "▼";
    float: right;
    font-size: 0.9rem;
}

.m-dropdown.open > a::after {
    content: "▲";
}

.m-dropdown-menu {
    display: none;
    padding-left: 10px;
}

.m-dropdown.open .m-dropdown-menu {
    display: block;
}

.m-dropdown-menu a {
    display: block;
    padding: 10px 0 0 10px;
    font-size: 1rem;
}

/* Hero 슬라이더 */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 0 24px;
    color: #fff;
    text-align: left;
}

.hero-content h2,
.hero-content p,
.hero-content .subtitle,
.hero-content .eyebrow {
    color: #fff;
}

.hero-content .eyebrow {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.28);
}

.hero-content h1 {
    font-size: clamp(2rem, 2.4vw + 1rem, 3rem);
    margin: 10px 0 12px;
    line-height: 1.28;
}

.hero-content .subtitle {
    font-size: 1.08rem;
    opacity: 0.92;
    line-height: 1.68;
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(25,118,210,0.12);
    color: #0f4fa8;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #d6e6ff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.btn.primary {
    background: #ffe082;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

.btn.ghost {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn.ghost:hover {
    background: rgba(255,255,255,0.18);
}

/* 서브 페이지 공통 */
.page-hero {
    background: linear-gradient(120deg, #1c9dd9, #1976d2);
    color: #fff;
    padding: 70px 20px 80px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(255,255,255,0.12), transparent 40%);
    pointer-events: none;
}

.page-hero .hero-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    z-index: 1;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.page-hero h1 {
    margin: 12px auto 12px;
    font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.6rem);
    line-height: 1.32;
    max-width: 780px;
}

.page-hero p {
    color : white;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.75;
    opacity: 0.95;
    max-width: 880px;
}

.content-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e9eef5;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.soft-highlight {
    background: linear-gradient(135deg, #f7fbff, #eef3ff);
    border: 1px solid #dfe9fb;
    box-shadow: 0 16px 36px rgba(42, 90, 169, 0.08);
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: start;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    padding: 14px 16px;
    border-radius: 12px;
    background: #f4f7fb;
    border: 1px solid #e5edf7;
    color: #3b4a5a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.gallery-grid img,
.map-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid #e8eef5;
}

.map-card {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.map-wrapper {
    display: grid;
    gap: 10px;
}

.map-embed {
    width: 100%;
    min-height: 340px;
    border-radius: 14px;
    border: 1px solid #e8eef5;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    background: linear-gradient(120deg, #f6f9ff, #eef3ff);
}

.map-fallback {
    display: none;
    width: 100%;
}

.map-fallback.show {
    display: block;
}

.map-fallback-note {
    margin: 0;
    padding: 12px 14px;
    background: #f4f7fb;
    color: #3b4a5a;
    font-size: 0.97rem;
    border: 1px dashed #d7e2f0;
    border-radius: 12px;
}

.map-tip {
    margin-top: 12px;
    color: #5f6b7a;
    line-height: 1.6;
}

.map-info-window {
    padding: 6px 10px;
    color: #111827;
    font-weight: 700;
    font-size: 0.95rem;
}

.map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(120deg, #e6f0ff, #f5f9ff);
    color: #0f4fa8;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #cfe0ff;
    box-shadow: 0 10px 26px rgba(25, 118, 210, 0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.map-button .icon {
    font-size: 1.05rem;
}

.map-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(25, 118, 210, 0.12);
}

.map-button.ghost {
    background: #f7f9fd;
    color: #2f3f52;
    border-color: #e2e9f5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    padding: 0;
    list-style: none;
    margin: 24px 0 0;
}

.process-steps li {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    border: 1px solid #e9eef5;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #1f2933;
}

.service-detail {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid #e9eef5;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-detail h3 {
    margin: 0;
    color: #1976d2;
}

.service-detail p {
    margin: 0;
    color: #3b4a5a;
    line-height: 1.7;
}

.pill-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.pill-list li {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1f4b99;
    border: 1px solid #d6e6ff;
    font-weight: 600;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
}

.icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf2ff, #f7fbff);
    color: #0f4fa8;
    font-size: 1.2rem;
    box-shadow: 0 10px 26px rgba(25, 118, 210, 0.12);
    border: 1px solid #dfe8f7;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.icon-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    background: #f7f9fd;
    border: 1px solid #e7eef7;
    border-radius: 14px;
}

.label {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(25, 118, 210, 0.1);
    color: #0f4fa8;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.glow-card {
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 20%, rgba(28, 157, 217, 0.14), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(255, 224, 130, 0.2), transparent 38%);
    z-index: 0;
}

.glow-card > * { position: relative; z-index: 1; }

.desktop-break {
    display: none;
}

@media (min-width: 900px) {
    .desktop-break { display: block; }
}

/* 공통 섹션 */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 20px;
}

.section-title {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 960px;
}

.section-title h2 {
    margin: 10px auto 8px;
    color: #1976d2;
    max-width: 820px;
}

.section-title .subtitle {
    margin: 0 auto;
    max-width: 900px;
    color: #52606d;
    line-height: 1.65;
}

.section .eyebrow:not(.hero-content .eyebrow):not(.page-hero .eyebrow) {
    background: rgba(25,118,210,0.12);
    color: #0f4fa8;
    border: 1px solid #d6e6ff;
}

/* Intro */
.section.intro {
    text-align: center;
}

.section.intro h2 {
    color: #1976d2;
}

.section.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3b4a5a;
}

/* Metrics */
.metrics {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: -50px;
}

.metric-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid #e9eef5;
}

.metric-label {
    font-size: 0.95rem;
    color: #3b82f6;
    font-weight: 700;
}

.metric-card strong {
    display: block;
    margin: 10px 0 6px;
    font-size: 1.3rem;
}

.metric-card p {
    margin: 0;
    color: #52606d;
}

.shadow {
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Services */
.service-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.card.highlight {
    background: #fff;
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid #e9eef5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e3f2fd;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #1976d2;
}

.card h3 {
    margin: 6px 0;
    font-size: 1.3rem;
}

.card p {
    margin: 0;
    color: #52606d;
    line-height: 1.6;
}

.card .link {
    margin-top: auto;
    color: #1976d2;
    font-weight: 700;
}

/* Roles */
.roles .role-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.roles .subtitle {
    color: #1f2937;
}

.role-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 16px;
}

.role-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1976d2;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.role-item h3 {
    margin: 0 0 6px;
}

.role-item p {
    margin: 0;
    color: #52606d;
    line-height: 1.6;
}

/* Callout */
.callout-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: linear-gradient(120deg, #1976d2, #1c9dd9);
    color: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.callout-card h2 {
    margin: 8px 0 6px;
    color: #fff;
}

.callout-card .subtitle {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.callout-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #1976d2, #1c9dd9);
    color: #f8fafc;
    padding: 40px 20px 36px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.18);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 28px;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.footer-name {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-director {
    font-size: 0.85rem;
    margin: 2px 0 4px;
    color: #fff;
    font-weight: 700;
}

.footer-tagline {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.85rem;
}

.footer-contact {
    font-size: 13px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.contact-item {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #bde5ff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    text-align: right;
}

.footer-nav-title {
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #d6ecff;
}

.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav a {
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, #e0f2ff, #bcdcff); */
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18); */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        align-items: flex-start;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Scroll Top */
#toTop {
    display: flex;
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #fff;
    color: #000000;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#toTop.show {
    opacity: 1;
}

/* 반응형 */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .callout-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slider {
        height: 60vh;
    }

    .logo-img {
        height: 60px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .metrics {
        margin-top: 10px;
    }

    .callout-actions {
        justify-content: flex-start;
    }
}
@media (max-width: 540px) {
    html {
        font-size: 15px;
    }

    body {
        line-height: 1.65;
    }

    h1 {
        font-size: clamp(1.6rem, 3vw + 1rem, 2.2rem);
    }

    h2 {
        font-size: clamp(1.35rem, 2.5vw + 1rem, 2rem);
    }

    h3 {
        font-size: 1.08rem;
    }

    p,
    .subtitle,
    .hero-content .subtitle,
    .page-hero p {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .section {
        padding: 60px 16px;
    }

    .page-hero {
        padding: 60px 16px 68px;
    }

    .hero-slider {
        min-height: 460px;
        height: 62vh;
    }

    .content-card,
    .card.highlight,
    .role-item,
    .callout-card {
        padding: 20px 18px;
    }

    .callout-card {
        gap: 16px;
    }

    .callout-actions {
        width: 100%;
    }

    .service-grid .grid,
    .two-column-grid,
    .roles .role-list {
        grid-template-columns: 1fr;
    }

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

    .map-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .map-embed {
        min-height: 260px;
        border-radius: 12px;
    }

    .map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .map-button {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}