/* ==========================================================
   PLACES SECTION
========================================================== */

.placesSection {
    padding: 90px 6vw;
    background: #F4F7F6;
}

.placesContainer {
    max-width: 1080px;
    margin: 0 auto;
}

.placesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.placeCard {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    scroll-margin-top: 100px;
}

.placeCard img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.placeCardBody {
    padding: 20px;
}

.placeCardBody h3 {
    font-size: 1.05rem;
    color: #0B1F1C;
    margin-bottom: 8px;
}

.placeCardBody p {
    font-size: .88rem;
    line-height: 1.6;
    color: #4B5A57;
}
