/* --- פריסה כללית (Layout) --- */
.tdm-layout-container { display: flex; gap: 30px; margin-top: 30px; align-items: flex-start; }
.tdm-sidebar { width: 28%; flex-shrink: 0; }
.tdm-main-content { flex-grow: 1; width: 72%; }

@media (max-width: 900px) {
    .tdm-layout-container { flex-direction: column; }
    .tdm-sidebar, .tdm-main-content { width: 100%; }
}

/* גריד כללי */
.attractions-grid, .destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }