@charset "UTF-8";

/*
 * 비치맵 공개 화면 전용 스타일.
 *
 * 기존 common.css 는 이전 서비스의 색상, 카드, 지도 컴포넌트가 강하게 결합되어 있어
 * 해수욕장 화면에 그대로 얹으면 문맥이 맞지 않는 색과 간격이 함께 따라온다.
 * 이 파일은 beach- 접두사를 사용해 새 화면의 스타일 범위를 명확히 제한한다.
 */
:root {
    --beach-bg: #f4fbfd;
    --beach-surface: #ffffff;
    --beach-surface-soft: #eef9fc;
    --beach-line: #d7e8ef;
    --beach-text: #1e2a32;
    --beach-muted: #5d6b74;
    --beach-primary: #0077b6;
    --beach-primary-dark: #035a88;
    --beach-primary-soft: #e3f5ff;
    --beach-aqua: #00a6c8;
    --beach-coral: #f26a4f;
    --beach-sun: #ffd166;
    --beach-green: #159a72;
    --beach-gray: #6b7280;
    --beach-shadow: 0 18px 44px rgba(22, 74, 96, 0.12);
    --beach-shadow-soft: 0 10px 28px rgba(22, 74, 96, 0.08);
    --beach-radius-lg: 18px;
    --beach-radius-md: 12px;
    --beach-header-height: 76px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

.beach-body {
    background: var(--beach-bg);
    color: var(--beach-text);
    font-family: "Pretendard Variable", "Noto Sans KR", Arial, sans-serif;
    line-height: 1.6;
}

.beach-body a {
    color: inherit;
    text-decoration: none;
}

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

#beachWrap {
    min-height: calc(100vh - var(--beach-header-height));
}

/* ------------------------------
 * 공통 헤더 / 푸터
 * ------------------------------ */
.beach-site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    border-bottom: 1px solid rgba(215, 232, 239, 0.95);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
}

.beach-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--beach-header-height);
}

.beach-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
}

.beach-brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, var(--beach-primary), var(--beach-aqua));
    color: #fff;
    font-weight: 900;
}

.beach-brand__text {
    font-size: 1.08rem;
}

.beach-site-nav {
    align-items: center;
    gap: 0.45rem;
}

.beach-site-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--beach-muted);
    font-weight: 800;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.beach-site-nav__link:hover,
.beach-site-nav__link.is-active {
    background: var(--beach-primary-soft);
    color: var(--beach-primary-dark);
}

.beach-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    width: 42px;
    height: 42px;
    border: 1px solid var(--beach-line);
    border-radius: 12px;
    background: #fff;
}

.beach-nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--beach-text);
}

.beach-mobile-nav {
    background: #fff;
}

.beach-mobile-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin-bottom: 0.65rem;
    padding: 0 1rem;
    border: 1px solid var(--beach-line);
    border-radius: 12px;
    color: var(--beach-text);
    font-weight: 800;
}

.beach-mobile-nav__link.is-active {
    border-color: rgba(0, 119, 182, 0.35);
    background: var(--beach-primary-soft);
    color: var(--beach-primary-dark);
}

.beach-site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--beach-line);
    background: #fff;
}

.beach-site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.beach-site-footer p,
.beach-site-footer__meta {
    margin: 0.35rem 0 0;
    color: var(--beach-muted);
}

.beach-site-footer__meta {
    display: grid;
    gap: 0.25rem;
    text-align: right;
    font-size: 0.92rem;
}

/* ------------------------------
 * 버튼 / 폼 / 배지 공통
 * ------------------------------ */
.beach-eyebrow,
.beach-panel__eyebrow,
.beach-search-panel__step {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: var(--beach-primary-soft);
    color: var(--beach-primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.beach-btn-primary {
    border: 0;
    background: var(--beach-primary);
    color: #fff;
    font-weight: 900;
}

.beach-btn-primary:hover,
.beach-btn-primary:focus {
    background: var(--beach-primary-dark);
    color: #fff;
}

.beach-btn-outline {
    border: 1px solid var(--beach-primary);
    background: #fff;
    color: var(--beach-primary);
    font-weight: 900;
}

.beach-btn-outline:hover,
.beach-btn-outline:focus {
    background: var(--beach-primary);
    color: #fff;
}

.beach-btn-sm {
    min-height: 34px;
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
}

.beach-form-label {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: var(--beach-muted);
    font-size: 0.9rem;
    font-weight: 900;
}

.beach-body .form-control,
.beach-body .form-select {
    min-height: 48px;
    border-color: var(--beach-line);
    border-radius: 12px;
    color: var(--beach-text);
}

.beach-body .form-control:focus,
.beach-body .form-select:focus {
    border-color: var(--beach-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.16);
}

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

.beach-form-grid--single {
    grid-template-columns: 1fr;
}

.beach-form-grid__full {
    grid-column: 1 / -1;
}

.beach-fieldset {
    min-width: 0;
    margin: 1.25rem 0 0;
    padding: 0;
    border: 0;
}

.beach-fieldset legend {
    float: none;
    width: auto;
    margin: 0 0 0.55rem;
    color: var(--beach-muted);
    font-size: 0.9rem;
    font-weight: 900;
}

.beach-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.beach-chip-group--stack {
    align-items: stretch;
}

.beach-toggle-chip {
    position: relative;
    display: inline-flex;
}

.beach-toggle-chip input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.beach-toggle-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 0.9rem;
    border: 1px solid var(--beach-line);
    border-radius: 999px;
    background: #fff;
    color: var(--beach-muted);
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.beach-toggle-chip input:checked + span {
    border-color: var(--beach-primary);
    background: var(--beach-primary);
    color: #fff;
}

.beach-toggle-chip input:focus-visible + span {
    outline: 2px solid rgba(0, 119, 182, 0.35);
    outline-offset: 2px;
}

.beach-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--beach-gray);
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.beach-status-badge.is-open {
    background: #e5f8f1;
    color: var(--beach-green);
}

.beach-status-badge.is-soon {
    background: #fff5d7;
    color: #a76000;
}

.beach-status-badge.is-closed {
    background: #eef0f3;
    color: var(--beach-gray);
}

/* ------------------------------
 * 메인 페이지
 * ------------------------------ */
.beach-home-hero {
    position: relative;
    min-height: calc(100vh - var(--beach-header-height));
    background:
        linear-gradient(90deg, rgba(0, 72, 105, 0.74), rgba(0, 119, 182, 0.34)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.beach-home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - var(--beach-header-height));
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.beach-home-hero__copy {
    color: #fff;
}

.beach-home-hero__copy .beach-eyebrow {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.beach-home-hero__copy h1 {
    max-width: 720px;
    margin: 1rem 0 1rem;
    font-size: 3.5rem;
    line-height: 1.08;
    font-weight: 900;
}

.beach-home-hero__copy p {
    max-width: 620px;
    margin: 0;
    font-size: 1.15rem;
}

.beach-hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 720px;
    margin-top: 2rem;
}

.beach-hero-summary div {
    min-height: 92px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.beach-hero-summary strong,
.beach-hero-summary span {
    display: block;
}

.beach-hero-summary span {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.beach-search-panel,
.beach-panel,
.beach-info-card,
.beach-faq-list article {
    border: 1px solid var(--beach-line);
    border-radius: var(--beach-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--beach-shadow);
}

.beach-search-panel {
    padding: 1.5rem;
}

.beach-search-panel__header h2,
.beach-panel__header h2,
.beach-section-heading h2,
.beach-result-summary h2 {
    margin: 0.5rem 0 0;
    font-size: 1.45rem;
    font-weight: 900;
}

.beach-search-panel__header p {
    margin: 0.35rem 0 1.25rem;
    color: var(--beach-muted);
}

.beach-search-form__submit {
    width: 100%;
    min-height: 52px;
    margin-top: 1.35rem;
    border-radius: 14px;
}

.beach-section {
    padding: 4rem 0;
}

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

.beach-content-narrow {
    max-width: 1040px;
}

.beach-section-heading {
    margin-bottom: 1.5rem;
}

.beach-section-heading h2 {
    font-size: 2rem;
}

.beach-guide-grid,
.beach-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.beach-info-card,
.beach-faq-list article {
    padding: 1.35rem;
}

.beach-info-card h3,
.beach-faq-list h3 {
    margin: 0 0 0.65rem;
    font-size: 1.12rem;
    font-weight: 900;
}

.beach-info-card p,
.beach-faq-list p {
    margin: 0;
    color: var(--beach-muted);
}

.beach-popular-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.beach-popular-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 999px;
    background: #fff;
    color: var(--beach-primary-dark);
    font-weight: 900;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.beach-popular-links a:hover,
.beach-popular-links a:focus {
    background: var(--beach-primary);
    color: #fff;
}

/* ------------------------------
 * 지도 페이지
 * ------------------------------ */
.beach-map-shell {
    padding: 1.5rem 0 3rem;
}

.beach-map-container {
    max-width: 1680px;
}

.beach-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.beach-map-header h1 {
    margin: 0.55rem 0 0;
    font-size: 2.3rem;
    font-weight: 900;
}

.beach-map-header p {
    margin: 0.35rem 0 0;
    color: var(--beach-muted);
}

.beach-map-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr) 380px;
    gap: 1rem;
    align-items: start;
}

.beach-map-filter-panel,
.beach-map-result-panel {
    position: sticky;
    top: calc(var(--beach-header-height) + 1rem);
}

.beach-panel {
    padding: 1.15rem;
}

.beach-panel__header {
    margin-bottom: 1rem;
}

.beach-search-form--compact .beach-fieldset {
    margin-top: 1rem;
}

.beach-search-form__actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.beach-map-stage {
    position: sticky;
    top: calc(var(--beach-header-height) + 1rem);
}

.beach-map-stage__viewport {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid var(--beach-line);
    border-radius: var(--beach-radius-lg);
    background: #dff6ff;
    box-shadow: var(--beach-shadow);
}

.beach-map-canvas,
.beach-fallback-map {
    position: absolute;
    inset: 0;
}

.beach-map-canvas {
    background: #dff6ff;
}

.beach-fallback-map {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(227, 245, 255, 0.74)),
        radial-gradient(circle at 18% 28%, rgba(0, 166, 200, 0.2) 0 3px, transparent 4px),
        radial-gradient(circle at 72% 40%, rgba(0, 119, 182, 0.22) 0 3px, transparent 4px),
        radial-gradient(circle at 42% 76%, rgba(242, 106, 79, 0.2) 0 3px, transparent 4px);
    background-size: auto, 128px 128px, 128px 128px, 128px 128px;
}

.beach-fallback-map__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    max-width: 260px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--beach-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--beach-shadow-soft);
}

.beach-fallback-map__label strong,
.beach-fallback-map__label span {
    display: block;
}

.beach-fallback-map__label span {
    margin-top: 0.25rem;
    color: var(--beach-muted);
    font-size: 0.88rem;
}

.beach-map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    min-height: 34px;
    padding: 0 0.75rem;
    border: 0;
    border-radius: 999px;
    background: var(--beach-primary);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.24);
}

.beach-map-pin.is-soon {
    background: #d98a00;
}

.beach-map-pin.is-closed {
    background: var(--beach-gray);
}

.beach-map-info-window {
    min-width: 220px;
    max-width: 280px;
    padding: 0.95rem;
    border: 1px solid var(--beach-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--beach-shadow);
}

.beach-map-info-window h3 {
    margin: 0.55rem 0 0.35rem;
    font-size: 1rem;
    font-weight: 900;
}

.beach-map-info-window p {
    margin: 0 0 0.75rem;
    color: var(--beach-muted);
    font-size: 0.9rem;
}

.beach-result-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.beach-result-summary h2 {
    font-size: 1.35rem;
}

.beach-result-summary p {
    max-width: 190px;
    margin: 0.2rem 0 0;
    color: var(--beach-muted);
    font-size: 0.92rem;
    text-align: right;
}

.beach-ad-box {
    display: grid;
    place-items: center;
    min-height: 96px;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px dashed #b9ccd5;
    border-radius: 14px;
    background: #f7fafb;
    color: var(--beach-muted);
    text-align: center;
    font-size: 0.92rem;
}

.beach-result-list {
    display: grid;
    gap: 0.85rem;
    max-height: 58vh;
    overflow: auto;
    padding-right: 0.2rem;
}

.beach-result-card {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--beach-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--beach-shadow-soft);
}

.beach-result-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.beach-result-card h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 900;
}

.beach-result-card address,
.beach-result-card p {
    margin: 0;
    color: var(--beach-muted);
    font-style: normal;
    font-size: 0.92rem;
}

.beach-result-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    color: var(--beach-muted);
    font-size: 0.9rem;
}

.beach-result-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.beach-empty-state {
    padding: 1.6rem;
    border: 1px dashed var(--beach-line);
    border-radius: 14px;
    background: #fff;
    text-align: center;
}

.beach-empty-state h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    font-weight: 900;
}

.beach-empty-state p {
    margin: 0;
    color: var(--beach-muted);
}

/* ------------------------------
 * 상세 offcanvas / 수정 제안 modal
 * ------------------------------ */
.beach-detail-panel {
    width: min(100vw, 440px);
}

.beach-detail-panel .offcanvas-title {
    margin-top: 0.6rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.beach-detail-panel__address {
    margin: 0.2rem 0 0;
    color: var(--beach-muted);
}

.beach-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1.35rem;
}

.beach-detail-grid div,
.beach-custom-info-list article,
.beach-edit-custom-item {
    padding: 0.9rem;
    border: 1px solid var(--beach-line);
    border-radius: 14px;
    background: #f8fbfd;
}

.beach-detail-grid strong,
.beach-detail-grid span {
    display: block;
}

.beach-detail-grid strong {
    color: var(--beach-muted);
    font-size: 0.82rem;
}

.beach-detail-grid span {
    margin-top: 0.25rem;
    font-weight: 900;
}

.beach-detail-section {
    margin-bottom: 1.35rem;
}

.beach-detail-section h3,
.beach-section-row h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 900;
}

.beach-detail-section p {
    margin: 0;
    color: var(--beach-muted);
}

.beach-facility-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.beach-facility-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: var(--beach-primary-soft);
    color: var(--beach-primary-dark);
    font-size: 0.86rem;
    font-weight: 900;
}

.beach-custom-info-list {
    display: grid;
    gap: 0.65rem;
}

.beach-custom-info-list h4 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 900;
}

.beach-custom-info-list p {
    margin: 0;
}

.beach-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.beach-detail-note {
    margin: 0.9rem 0 0;
    color: var(--beach-muted);
    font-size: 0.88rem;
}

.beach-edit-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 900;
}

.beach-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 14px;
    background: var(--beach-primary-soft);
    color: var(--beach-primary-dark);
    font-weight: 800;
}

.beach-edit-facility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.beach-edit-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0 0.8rem;
    border: 1px solid var(--beach-line);
    border-radius: 12px;
    background: #fff;
    color: var(--beach-text);
    font-weight: 800;
}

.beach-edit-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--beach-primary);
}

.beach-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.beach-edit-custom-list {
    display: grid;
    gap: 0.7rem;
}

.beach-edit-custom-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.beach-edit-custom-item__head strong {
    font-size: 0.92rem;
}

@media (max-width: 1399px) {
    .beach-map-layout {
        grid-template-columns: 300px minmax(0, 1fr) 340px;
    }
}

@media (max-width: 1199px) {
    .beach-home-hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .beach-search-panel {
        max-width: 720px;
    }

    .beach-map-layout {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .beach-map-result-panel {
        grid-column: 1 / -1;
        position: static;
    }

    .beach-result-list {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    :root {
        --beach-header-height: 68px;
    }

    .beach-home-hero__copy h1 {
        font-size: 2.8rem;
    }

    .beach-hero-summary,
    .beach-guide-grid,
    .beach-faq-list,
    .beach-map-layout,
    .beach-result-list {
        grid-template-columns: 1fr;
    }

    .beach-map-filter-panel,
    .beach-map-stage {
        position: static;
    }

    .beach-map-stage {
        order: -1;
    }

    .beach-map-stage__viewport {
        min-height: 440px;
    }

    .beach-map-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .beach-result-summary p {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .beach-site-footer__inner,
    .beach-map-header,
    .beach-result-summary,
    .beach-section-row {
        flex-direction: column;
        align-items: stretch;
    }

    .beach-site-footer__meta,
    .beach-result-summary p {
        text-align: left;
    }

    .beach-home-hero__inner {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .beach-home-hero__copy h1 {
        font-size: 2.25rem;
    }

    .beach-home-hero__copy p {
        font-size: 1rem;
    }

    .beach-form-grid,
    .beach-detail-grid,
    .beach-detail-actions,
    .beach-edit-facility-grid,
    .beach-result-card__actions,
    .beach-result-card__meta {
        grid-template-columns: 1fr;
    }

    .beach-section {
        padding: 3rem 0;
    }

    .beach-section-heading h2 {
        font-size: 1.65rem;
    }

    .beach-search-panel,
    .beach-panel {
        padding: 1rem;
    }

    .beach-map-shell {
        padding-top: 1rem;
    }

    .beach-map-stage__viewport {
        min-height: 360px;
    }

    .beach-detail-panel {
        width: 100vw;
    }
}
