/* ==============================================
   KIEZ-TIPPS / PLACES PAGE
   ============================================== */
/* Map Container */
.places-map-container {
    height: 450px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 1;
    /* Ensure map controls are clickable */
}

/* Fix for Leaflet controls z-index if needed */
.leaflet-top,
.leaflet-bottom {
    z-index: 500;
}

.place-card-category-badge {
    background: var(--accent-color);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--brutal-radius);
    padding: 0.25rem 0.6rem;
}


.place-card-title {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.place-card-address {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.place-comments-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.place-comment-pill {
    background: var(--bg-surface-2);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: var(--brutal-radius);
    font-size: 0.75rem;
}



.place-card-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.place-details-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Cleanup Classes */
.place-back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--text-muted);
    text-decoration: none;
}

.place-details-card {
    padding: 2rem;
}