/* Стили для списка достопримечательностей */
.left-sidebar {
    display: none;
}

.places-list-title {
    font-size: 32px;
    font-weight: 400;
    margin: -60px 0px 20px 0px;
}

/* Контейнер для всей страницы */
.places-list-container {
    margin-top: -15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Сетка для плиток */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Стили для плитки */
.places-tile {
    width: 100%;
    max-width: 380px;
    /*border: 1px solid #ddd;*/
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

.places-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 5px;
}

.places-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.places-info {
    padding: 10px;
}

.places-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.places_info_data {
    display: flex;
    justify-content: start;
    width: 100%;
    gap: 15px;
    font-size: 13px;
}

/* Пагинация */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.page-link {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
}

.page-link:hover {
    text-decoration: underline;
}

.page-current {
    margin: 0 10px;
    color: #333;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .module {
        margin: -12px 0 20px 0;
    }
    
    .places-list-title {
        font-size: 24px;
        margin: 0 0 16px 0;
    }

    .places-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
    }

    .ad-tile {
        max-width: 100%; /* Плитка занимает всю ширину */
    }

    .container-area.promo { 
        display: none !important; 
    }
}