@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');
        body {
            font-family: 'Noto Sans KR', sans-serif;
            -webkit-tap-highlight-color: transparent;
            background-color: #ffffff;
        }
        .map-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .card {
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            background-color: #ffffff;
            border: 1px solid #f0f0f0;
        }
        .btn {
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .btn-primary {
            background-color: #A2D2FC;
            color: #1A1A1A;
        }
        .btn-primary:hover {
            background-color: #8BB9E0;
        }
        .btn-primary:hover {
            background-color: #8BB9E0;
        }
        .btn-secondary:hover {
            background-color: #EBEBEB;
        }
        .tab-active {
            position: relative;
            color: #1A1A1A;
            font-weight: 700;
        }

        .tab-active:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1A1A1A;
        }

        .page-header {
            background-color: #A2D2FC;
            color: white;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 24px;
            text-align: left;
        }

        .kakao-btn {
            background-color: #FEE500;
            color: #000000;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            margin-left: 30px;
            margin-right: 30px;
            border-radius: 12px;
        }

        .view-detail-btn {
            color: #666;
            font-size: 12px;
            text-align: right;
            padding: 4px 8px;
            background-color: transparent;
            position: relative;
            z-index: 10;
            pointer-events: auto; /* ✅ 반드시 추가 */
            cursor: pointer;      /* 클릭 가능한 손가락 커서 */
        }

        .tab-container {
            display: flex;
            border-bottom: 1px solid #eee;
        }

        .tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            font-weight: 500;
        }

        .tab.active {
            font-weight: 700;
            border-bottom: 2px solid #000;
        }
        .page-header {
            background-color: #A2D2FC;
            color: white;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 24px;
            text-align: left;
        }
        .footer {
            background-color: #A2D2FC;
            color: white;
            padding: 12px 0;
            font-size: 12px;
            text-align: center;
        }
/* 기존 고정 높이 제거 */
.card-hot {
    /* height: 320px; */
    display: flex;
    flex-direction: column;
}

/* 이미지 높이 고정 대신 비율 유지 */
.card-hot img {
    width: 100%;
    /* 16:9 비율 예시 — 필요에 따라 2/1, 4/3 등으로 조정 */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    flex-shrink: 0;
}

/* 카드 컨텐츠는 기존대로 flex 처리 */
.card-hot .card-content {
    /* flex-grow: 1; */    /* 없어도 flex-1 클래스처럼 작동 */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
