html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard';
    color: #192343;
    background: #fff;
    min-width: 1200px;
}

* {
    box-sizing: border-box;
}

.map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 90px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.map-left {
    flex: 0 0 260px;
    min-height: 560px;
    padding: 8px 28px 0 0;
    border-right: 1px solid rgba(25, 35, 67, .12);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-menu a {
    position: relative;
    display: block;
    padding: 11px 0 11px 16px;
    color: rgba(25, 35, 67, .78);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: .2s ease;
}

.map-menu a:hover {
    color: #45B6B0;
    background: rgba(69, 182, 176, .08);
}

.map-menu a.active {
    color: #45B6B0;
    font-weight: 700;
    background: rgba(69, 182, 176, .1);
    pointer-events: none;
}

.map-menu a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 99px;
    background: #45B6B0;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-links a {
    width: 190px;
    height: 74px;
    padding: 14px;
    border: 1px solid rgba(25, 35, 67, .12);
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.about-links a:hover {
    border-color: rgba(69, 182, 176, .45);
    box-shadow: 0 8px 20px rgba(25, 35, 67, .08);
    transform: translateY(-2px);
}

.about-links img {
    width: 100%;
    height: 150%;
    object-fit: contain;
    display: block;
}

.link-title {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(25, 35, 67, .45);
}

.map-right {
    flex: 1;
    max-width: 820px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #45B6B0;
}

.map-header {
    margin-bottom: 28px;
}

.map-header h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #192343;
}

.map-box {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(25, 35, 67, .08);
    margin-bottom: 24px;
}

.map-box iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.address-box {
    padding: 24px;
    border-radius: 18px;
    background: #F1F4F5;
}

.address-box strong {
    display: block;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-map,
.btn-copy {
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.btn-map {
    background: #22c55e;
    color: #fff;
}

.btn-copy {
    background: #e5e7eb;
    color: #192343;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(25, 35, 67, .08);
    border-radius: 18px;
}

.info-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
}

.info-item p {
    margin: 0;
    line-height: 1.8;
    color: rgba(25, 35, 67, .75);
}

.traffic-card {
    padding: 24px;
    border: 1px solid rgba(25,35,67,.08);
    border-radius: 18px;
}

.traffic-card h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 800;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(25,35,67,.08);
    border-radius: 12px;
    overflow: hidden;
}

.transport-column {
    padding: 20px;
}

.transport-column:first-child {
    border-right: 1px solid rgba(25,35,67,.08);
}

.transport-column h4 {
    margin: 0 0 12px;
    color: #45B6B0;
    font-size: 16px;
    font-weight: 800;
}

.transport-column p {
    margin: 0;
    line-height: 1.9;
    color: rgba(25,35,67,.75);
}