.bhl-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 64px;
    font-family: var(--font-primary, sans-serif);
}

.bhl-back { margin-bottom: 16px; }
.bhl-back__link { font-size: 14px; color: #6b7280; text-decoration: none; }
.bhl-back__link:hover { color: #111; }

/* Hero */
.bhl-hero {
    text-align: center;
    padding: 40px 0 36px;
    max-width: 700px;
    margin: 0 auto 40px;
}
.bhl-hero__badge { margin-bottom: 12px; }
.bhl-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 16px;
    color: #111;
}
.bhl-hero__intro {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 14px;
}
.bhl-hero__count {
    font-size: 14px;
    font-weight: 600;
    color: #4c7c59;
    margin: 0;
}

/* Map */
.bhl-map-section {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
#bhl-map { height: 460px; width: 100%; }

/* Zoom at top-right — no sidebar offset needed */
#bhl-map .leaflet-top.leaflet-right { top: 0; }

/* List */
.bhl-list__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #111;
}

.bhl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* Card */
.bhl-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.bhl-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border-color: #4c7c59;
}

.bhl-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f3f4f6;
}
.bhl-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}
.bhl-card:hover .bhl-card__image img { transform: scale(1.03); }
.bhl-card__image--empty { background: #e5e7eb; }

.bhl-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.bhl-card__badge { display: flex; align-items: center; }
.bhl-card__name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #111;
    line-height: 1.3;
}
.bhl-card__address {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}
.bhl-card__facilities {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.bhl-card__facilities li {
    font-size: 11px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 2px 6px;
}

/* Map marker */
.bhl-map-marker {
    width: 18px;
    height: 18px;
    background: #4c7c59;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.4);
}

@media (max-width: 600px) {
    .bhl-grid { grid-template-columns: 1fr; }
    #bhl-map { height: 320px; }
}
