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

#places {
    scroll-margin-top: 90px;
}

/* Smooth image rendering */
#places img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Place card */
#places .place-card {
    transform: translateZ(0);
    will-change: transform;
}

/* Image hover */
#places .place-card img {
    transform-origin: center;
}

/* Better text selection */
#places .place-card h3 {
    letter-spacing: -0.2px;
}

/* Mobile optimization */
@media (max-width: 640px) {

    #places {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    #places .place-card {
        border-radius: 1rem;
    }

}

/* Tablet */
@media (min-width: 641px) and (max-width: 1023px) {

    #places .place-card {
        border-radius: 1.1rem;
    }

}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    #places *,
    #places *::before,
    #places *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}