:root {
    --bds-ink: #101214;
    --bds-muted: #68727d;
    --bds-line: #dce3ea;
    --bds-soft: #f4f7f9;
    --bds-card: #ffffff;
    --bds-brand: #006f8f;
    --bds-brand-2: #00a884;
    --bds-warm: #f5b84b;
    --bds-danger: #d83f31;
    --bds-shadow: 0 14px 38px rgba(16, 18, 20, .10);
}

body {
    margin: 0;
    color: var(--bds-ink);
    background: #fff;
    font-family: "SUIT", "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    overflow-x: hidden;
}

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

.bds-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 clamp(18px, 4vw, 54px);
    border-bottom: 1px solid var(--bds-line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
}

.bds-header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bds-logo {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 900;
    color: var(--bds-brand);
    letter-spacing: -.04em;
}

.bds-header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #d9e8ec;
    border-radius: 999px;
    color: #11495e;
    background: #eef8f7;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.bds-site-header nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #26313b;
    font-size: 15px;
    font-weight: 800;
}

.bds-site-header nav a {
    flex: 0 0 auto;
}

.bds-site-header nav a:last-child {
    padding: 9px 14px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
}

.bds-site-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 34px 18px;
    border-top: 1px solid var(--bds-line);
    color: var(--bds-muted);
    background: #f8fafb;
    text-align: center;
}

.bds-footer-brand,
.bds-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bds-footer-brand {
    flex-direction: column;
    gap: 10px;
}

.bds-site-footer strong {
    color: var(--bds-ink);
}

.bds-footer-brand span {
    padding: 5px 9px;
    border: 1px solid #d9e8ec;
    border-radius: 999px;
    color: var(--bds-brand);
    background: #eef8f7;
    font-size: 13px;
    font-weight: 900;
}

.bds-footer-info span {
    color: #53606b;
    font-size: 14px;
    font-weight: 800;
}

.bds-footer-info a {
    color: var(--bds-brand);
    font-weight: 900;
}

.bds-home {
    background:
        linear-gradient(180deg, #edf7f9 0, #fff 430px),
        radial-gradient(circle at 20% 12%, rgba(0, 168, 132, .16), transparent 280px);
}

.bds-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
    max-width: 1180px;
    min-height: 430px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 44px) 20px 44px;
}

.bds-hero__copy {
    display: grid;
    align-content: start;
    gap: 0;
}

.bds-hero__side {
    display: grid;
    gap: 14px;
}

.bds-kicker {
    margin: 0 0 10px;
    color: var(--bds-brand);
    font-weight: 900;
}

.bds-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: 0;
    white-space: nowrap;
}

.bds-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    width: min(760px, 100%);
    overflow: hidden;
    border: 2px solid var(--bds-ink);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--bds-shadow);
}

.bds-search input,
.bds-map-search input,
.bds-map-search select,
.bds-contact input,
.bds-contact textarea {
    min-width: 0;
    border: 0;
    color: var(--bds-ink);
    font: inherit;
}

.bds-search input {
    min-height: 62px;
    padding: 0 22px;
    font-size: 18px;
}

.bds-search button,
.bds-map-search button,
.bds-contact button {
    border: 0;
    color: #fff;
    background: var(--bds-brand);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.bds-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bds-quick a {
    padding: 10px 14px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
}

.bds-hero__panel {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--bds-shadow);
}

.bds-hero__panel strong {
    font-size: 24px;
}

.bds-hero__panel span {
    color: var(--bds-muted);
    line-height: 1.6;
}

.bds-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bds-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.02em;
    box-shadow: var(--bds-shadow);
}

.bds-hero__action--call {
    background: linear-gradient(135deg, #006f8f, #128ab0);
}

.bds-hero__action--route {
    background: linear-gradient(135deg, #00946f, #1db874);
}

.bds-section,
.bds-band {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px;
}

.bds-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.bds-section__head h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0;
}

.bds-section__head a,
.bds-sort a {
    color: var(--bds-brand);
    font-weight: 900;
}

.bds-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.bds-card {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
}

.bds-card__image,
.bds-view-photo {
    display: block;
    min-height: 150px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(0, 111, 143, .22), rgba(0, 168, 132, .18)),
        repeating-linear-gradient(45deg, #eef5f6 0, #eef5f6 10px, #e6eef0 10px, #e6eef0 20px);
    background-position: center;
    background-size: cover;
}

.bds-card__image.is-empty,
.bds-view-photo.is-empty,
.bds-view-no-media {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    color: #6b7680;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .38)),
        repeating-linear-gradient(45deg, #eef5f6 0, #eef5f6 10px, #e6eef0 10px, #e6eef0 20px);
}

.bds-card__image.is-empty span,
.bds-view-photo.is-empty span,
.bds-view-no-media strong {
    font-weight: 900;
}

.bds-view-photo.is-empty small,
.bds-view-no-media p {
    margin: 0;
    color: var(--bds-muted);
}

.bds-card__meta {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--bds-brand);
    background: #e6f5f4;
    font-size: 12px;
    font-weight: 900;
}

.bds-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bds-card em,
.bds-list-item em,
.bds-view-summary strong {
    color: var(--bds-danger);
    font-style: normal;
    font-weight: 900;
}

.bds-card small,
.bds-card span:not(.bds-card__image):not(.bds-card__meta),
.bds-list-item small {
    color: var(--bds-muted);
    line-height: 1.45;
}

.bds-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.bds-band a {
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--bds-brand), var(--bds-brand-2));
}

.bds-band strong {
    font-size: 22px;
}

.bds-map-page {
    display: grid;
    grid-template-columns: minmax(380px, 470px) minmax(0, 1fr);
    min-height: calc(100vh - 70px);
    background: var(--bds-soft);
}

.bds-map-side {
    overflow: auto;
    max-height: calc(100vh - 70px);
    border-right: 1px solid var(--bds-line);
    background: #fff;
}

.bds-map-search {
    display: grid;
    grid-template-columns: 1fr 130px 112px 88px;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid var(--bds-line);
}

.bds-map-search input,
.bds-map-search select {
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
}

.bds-map-search button {
    border-radius: 8px;
}

.bds-sort {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid var(--bds-line);
}

.bds-sort strong {
    margin-right: auto;
}

.bds-list {
    display: grid;
    gap: 0;
}

.bds-list-item {
    display: grid;
    gap: 7px;
    padding: 18px;
    border-bottom: 1px solid var(--bds-line);
    background: #fff;
}

.bds-list-item.is-special {
    border-left: 5px solid var(--bds-warm);
}

.bds-list-item > span {
    color: var(--bds-muted);
    font-size: 12px;
    font-weight: 800;
}

.bds-list-item strong {
    font-size: 18px;
}

.bds-list-item p {
    margin: 0;
    color: #343c43;
    line-height: 1.45;
}

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

.bds-map-toolbar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}

.bds-map-toolbar span,
.bds-map-toolbar a {
    padding: 10px 14px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--bds-shadow);
    font-weight: 900;
    pointer-events: auto;
}

.bds-map-placeholder {
    display: grid;
    place-content: center;
    gap: 16px;
    min-height: 100%;
    padding: 80px 30px 30px;
    text-align: center;
    background:
        linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
        linear-gradient(90deg, #d9e6e9 1px, transparent 1px),
        linear-gradient(0deg, #d9e6e9 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
}

.bds-kakao-map,
.bds-naver-map {
    width: 100%;
    min-height: calc(100vh - 70px);
    background: #dfe9ec;
}

.bds-map-fallback-frame {
    display: block;
    width: 100%;
    border: 0;
}

.bds-kakao-map[hidden],
.bds-map-fallback-frame[hidden] {
    display: none;
}

.bds-map-hint,
.bds-map-auth {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 3;
    width: min(420px, calc(100% - 32px));
    transform: translateX(-50%);
    padding: 18px;
    border: 1px solid var(--bds-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--bds-shadow);
    text-align: center;
}

.bds-map-hint strong,
.bds-map-auth {
    font-weight: 900;
}

.bds-map-hint p {
    margin: 6px 0 0;
    color: var(--bds-muted);
    line-height: 1.55;
}

.bds-map-info {
    display: grid;
    gap: 4px;
    min-width: 160px;
    padding: 10px 12px;
}

.bds-map-info strong {
    color: var(--bds-ink);
    font-size: 14px;
}

.bds-map-info span {
    color: var(--bds-danger);
    font-weight: 900;
}

.bds-map-placeholder strong {
    font-size: 34px;
}

.bds-map-placeholder p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--bds-muted);
    line-height: 1.7;
}

.bds-map-pins {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 620px;
}

.bds-map-pins a {
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--bds-brand);
    font-weight: 900;
    box-shadow: var(--bds-shadow);
}

.bds-view {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.bds-view-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    align-items: stretch;
}

.bds-view-photo {
    min-height: 420px;
}

.bds-view-media {
    display: grid;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--bds-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--bds-shadow);
}

.bds-view-media h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.bds-view-location {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--bds-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--bds-shadow);
}

.bds-view-location__head {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: space-between;
}

.bds-view-location__head span {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--bds-brand);
    background: #e6f5f4;
    font-size: 12px;
    font-weight: 900;
}

.bds-view-location__head h2 {
    margin: 0;
    font-size: 24px;
}

.bds-view-location__head p {
    margin: 6px 0 0;
    color: var(--bds-muted);
}

.bds-view-location__head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--bds-brand);
    font-weight: 900;
    white-space: nowrap;
}

.bds-view-map {
    overflow: hidden;
    min-height: 360px;
    border: 1px solid var(--bds-line);
    border-radius: 12px;
    background:
        radial-gradient(circle at 24% 30%, rgba(0, 168, 132, .16), transparent 32%),
        linear-gradient(135deg, #eef7f4, #eaf1f3);
}

.bds-view-map[hidden] {
    display: none;
}

.bds-view-map-frame {
    display: block;
    width: 100%;
    border: 1px solid var(--bds-line);
}

.bds-view-map--empty {
    display: grid;
    place-items: center;
    align-content: center;
    padding: 24px;
    color: var(--bds-muted);
    text-align: center;
}

.bds-view-map--empty strong {
    color: var(--bds-ink);
    font-size: 20px;
}

.bds-view-map-info {
    min-width: 160px;
    padding: 9px 12px;
    color: var(--bds-ink);
    font-size: 13px;
    font-weight: 900;
}

.bds-view-map-note {
    margin: 0;
    color: var(--bds-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}

.bds-view-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.bds-view-gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(0, 111, 143, .18), rgba(0, 168, 132, .12)),
        #eef5f6 center/cover no-repeat;
    background-color: #f6faf9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bds-view-gallery-item span {
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 18, 20, .72);
    font-size: 12px;
    font-weight: 900;
}

.bds-view-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bds-view-video-frame {
    overflow: hidden;
    border-radius: 12px;
    background: #101214;
    aspect-ratio: 16 / 9;
}

.bds-view-video-frame iframe,
.bds-view-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.bds-view-summary {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--bds-shadow);
}

.bds-view-summary h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
}

.bds-view-summary strong {
    font-size: 30px;
}

.bds-view-summary p {
    margin: 0;
    color: #343c43;
    line-height: 1.65;
}

.bds-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.bds-facts span {
    padding: 10px;
    border-radius: 8px;
    background: var(--bds-soft);
    font-weight: 800;
}

.bds-view-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-top: 28px;
}

.bds-view-grid article,
.bds-contact {
    padding: 24px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
}

.bds-view h2,
.bds-contact h2 {
    margin: 0 0 16px;
    font-size: 24px;
    letter-spacing: 0;
}

.bds-detail-list {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px 16px;
    margin: 0 0 30px;
}

.bds-detail-list dt {
    color: var(--bds-muted);
    font-weight: 900;
}

.bds-detail-list dd {
    margin: 0;
}

.bds-description {
    color: #303840;
    line-height: 1.85;
}

.bds-contact {
    align-self: start;
    position: sticky;
    top: 90px;
}

.bds-contact strong {
    display: block;
    margin-bottom: 6px;
}

.bds-contact p {
    margin: 0 0 16px;
    color: var(--bds-muted);
}

.bds-contact form {
    display: grid;
    gap: 10px;
}

.bds-contact input,
.bds-contact textarea {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--bds-line);
    border-radius: 8px;
    background: #fff;
}

.bds-contact textarea {
    min-height: 100px;
    padding-top: 12px;
}

.bds-contact button {
    min-height: 48px;
    border-radius: 8px;
}

.bds-empty {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px dashed var(--bds-line);
    border-radius: 8px;
    color: var(--bds-muted);
    background: #fff;
    text-align: center;
    font-weight: 800;
}

.bds-paging {
    padding: 18px;
    text-align: center;
}

#mb_login.mbskin {
    width: min(440px, calc(100% - 28px)) !important;
    margin: clamp(38px, 7vw, 78px) auto !important;
    color: var(--bds-ink);
    text-align: left !important;
}

#mb_login .mbskin_box {
    position: relative;
    overflow: hidden;
    padding: 34px 30px 30px !important;
    border: 1px solid rgba(0, 111, 143, .16) !important;
    border-radius: 22px !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(0, 111, 143, .28), rgba(0, 168, 132, .34)) border-box !important;
    box-shadow: 0 24px 70px rgba(16, 18, 20, .14) !important;
}

#mb_login .mbskin_box:before {
    content: "BDSNET";
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #006f8f;
    background: #e9f8f5;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

#mb_login h1 {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 18px !important;
    color: #101214 !important;
    font-size: 28px !important;
    line-height: 1.25 !important;
    text-indent: 0 !important;
}

#mb_login h1:after {
    content: "관리자와 회원 모두 편하게 사용할 수 있는 로그인 화면입니다.";
    display: block;
    margin-top: 8px;
    color: var(--bds-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

#mb_login .mb_log_cate {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px !important;
    padding: 4px !important;
    border: 1px solid var(--bds-line);
    border-radius: 14px;
    background: #f5f8fa;
}

#mb_login .mb_log_cate a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 0 !important;
    border-radius: 10px !important;
    color: #53606b !important;
    background: transparent !important;
    font-weight: 900 !important;
}

#mb_login .mb_log_cate .join,
#mb_login .mb_log_cate a:hover,
#mb_login .mb_log_cate a:focus {
    color: #fff !important;
    background: linear-gradient(135deg, var(--bds-brand), var(--bds-brand-2)) !important;
}

#mb_login #login_fs {
    display: grid;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

#mb_login label,
#mb_login .sound_only {
    color: #26313b !important;
    font-weight: 800 !important;
}

#mb_login #login_fs input[type="text"],
#mb_login #login_fs input[type="password"],
#mb_login input.frm_input {
    width: 100% !important;
    height: 50px !important;
    padding: 0 14px !important;
    border: 1px solid #d8e1e8 !important;
    border-radius: 12px !important;
    color: #101214 !important;
    background: #fbfcfd !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

#mb_login #login_fs input:focus {
    outline: 3px solid rgba(0, 168, 132, .16) !important;
    border-color: var(--bds-brand-2) !important;
    background: #fff !important;
}

#mb_login .btn_submit,
#mb_login button[type="submit"],
#mb_login input[type="submit"] {
    width: 100% !important;
    height: 52px !important;
    margin-top: 8px !important;
    border: 0 !important;
    border-radius: 13px !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--bds-brand), var(--bds-brand-2)) !important;
    box-shadow: 0 14px 30px rgba(0, 111, 143, .22) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

#mb_login #login_info,
#mb_login .login_auto,
#mb_login .login_if_lpl {
    color: var(--bds-muted) !important;
    line-height: 1.6 !important;
}

#mb_login #login_info a {
    color: var(--bds-brand) !important;
    font-weight: 900 !important;
}

@media (max-width: 1080px) {
    .bds-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bds-map-page,
    .bds-view-hero,
    .bds-view-grid {
        grid-template-columns: 1fr;
    }

    .bds-map-side {
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid var(--bds-line);
    }

    .bds-map-placeholder,
    .bds-kakao-map,
    .bds-naver-map {
        min-height: 520px;
    }

    .bds-contact {
        position: static;
    }
}

@media (max-width: 900px) {
    .bds-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        align-items: start;
    }

    .bds-hero__panel {
        width: auto;
    }

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

    .bds-map-search input {
        grid-column: 1 / -1;
    }

    .bds-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .bds-hero__panel {
        height: 100%;
    }
}

@media (max-width: 760px) {
    .bds-site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .bds-header-brand,
    .bds-logo {
        width: 100%;
    }

    .bds-header-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .bds-logo {
        line-height: 1.2;
    }

    .bds-site-header nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        width: 100%;
        gap: 8px;
        padding-bottom: 0;
        white-space: normal;
    }

    .bds-site-header nav a,
    .bds-site-header nav a:last-child {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 9px;
        border: 1px solid var(--bds-line);
        border-radius: 10px;
        background: #fff;
        font-size: 13px;
    }

    .bds-hero h1 {
        font-size: clamp(34px, 11vw, 42px);
        white-space: normal;
        word-break: keep-all;
    }

    .bds-search,
    .bds-map-search {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .bds-search button,
    .bds-map-search button {
        min-height: 50px;
    }

    .bds-card-grid,
    .bds-band,
    .bds-facts {
        grid-template-columns: 1fr;
    }

    .bds-section,
    .bds-band,
    .bds-view {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bds-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .bds-hero__side,
    .bds-hero__actions {
        grid-template-columns: 1fr;
    }

    .bds-map-toolbar {
        position: static;
        padding: 12px;
        background: #fff;
        border-bottom: 1px solid var(--bds-line);
    }

    .bds-map-toolbar span,
    .bds-map-toolbar a {
        box-shadow: none;
    }

    .bds-map-placeholder,
    .bds-kakao-map,
    .bds-naver-map {
        min-height: 390px;
        padding: 36px 18px;
    }

    .bds-map-placeholder strong {
        font-size: 26px;
    }

    .bds-list-item {
        padding: 15px 14px;
    }

    .bds-view-photo {
        min-height: 280px;
    }

    .bds-view-media {
        padding: 16px;
    }

    .bds-view-location {
        padding: 16px;
    }

    .bds-view-location__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bds-view-location__head a {
        width: 100%;
    }

    .bds-view-map {
        min-height: 300px;
    }

    .bds-view-gallery,
    .bds-view-video-grid {
        grid-template-columns: 1fr;
    }

    .bds-view-summary,
    .bds-view-grid article,
    .bds-contact {
        padding: 18px;
    }

    .bds-view-summary h1 {
        font-size: 28px;
    }

    .bds-site-footer,
    .bds-footer-brand,
    .bds-footer-info {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .bds-site-footer {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .bds-site-header {
        min-height: auto;
        padding-left: 12px;
        padding-right: 12px;
    }

    .bds-logo {
        font-size: 21px;
    }

    .bds-site-header nav {
        gap: 10px;
        font-size: 14px;
    }

    .bds-hero {
        padding: 32px 14px 28px;
    }

    .bds-kicker {
        font-size: 14px;
    }

    .bds-hero h1 {
        margin-bottom: 18px;
        font-size: clamp(30px, 10vw, 38px);
        line-height: 1.13;
    }

    .bds-search input {
        min-height: 54px;
        padding: 0 15px;
        font-size: 16px;
    }

    .bds-search button {
        min-height: 52px;
    }

    .bds-quick a {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .bds-card__image {
        min-height: 190px;
    }

    .bds-detail-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    #mb_login .mbskin_box {
        padding: 28px 20px 24px !important;
        border-radius: 18px !important;
    }
}
