/**
 * TT Tour Grid CSS — Compact Modern Design
 * Grid düzeni + section header
 */

/* Wrapper */
.tt-ew-tour-grid-wrapper {
    width: 100%;
}

/* Grid — kompakt gap */
.tt-ew-tour-grid-wrapper .tt-ew-grid {
    gap: 20px;
}

@media (max-width: 768px) {
    .tt-ew-tour-grid-wrapper .tt-ew-grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .tt-ew-tour-grid-wrapper .tt-ew-grid--cols-3 {
        grid-template-columns: 1fr;
    }
    .tt-ew-tour-grid-wrapper .tt-ew-grid {
        gap: 14px;
    }
}
