/* ==========================================================================
   Neighborhood POIs — "Šta ima u blizini" sekcija.
   Grid kategorija sa listom objekata i vremenom pešačenja.
   Editorial flat chrome, konzistentno sa .place-card / .section-card.
   ========================================================================== */

.pois-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-top: 16px;
}

.pois-category__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
}

.pois-category__title i {
    color: var(--terracotta);
    font-size: 0.9em;
    width: 18px;
    text-align: center;
}

.pois-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pois-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--font-body);
    color: var(--ink);
}

.pois-item:last-child {
    border-bottom: none;
}

.pois-item__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pois-item__time {
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    color: var(--taupe);
    font-size: 0.9em;
    white-space: nowrap;
}

.pois-item__time::before {
    content: "\f554"; /* fa-person-walking */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 0.85em;
}

.pois-attribution {
    margin: 16px 0 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--taupe);
}
