.tourism-block {
    display: flex;          /* Use flex to arrange tiles horizontally */
    flex-wrap: wrap;        /* Allow wrapping to multiple lines */
    margin: 0 -15px;        /* Optional outer negative margin if you want gutters */
    flex-direction: column;
}
.tourism-tile {
    box-sizing: border-box;
    padding: 0 15px;        /* Inner padding for gutters */
    margin-bottom: 30px;    /* Spacing below each tile */
    position: relative;
}
/* Items 2, 3, 4, 5: each 25% width */
.tourism-row.row-1 div:nth-child(2),
.tourism-row.row-1 div:nth-child(3),
.tourism-row.row-2 div:nth-child(1),
.tourism-row.row-2 div:nth-child(2) {
    width: 25%;
}
.tourism-row {
    display: flex;
    flex-direction: row;
}
.tourism-row.row-1 div:nth-child(1) {
    width: 50%
}
.tourism-row.row-2 div:nth-child(3) {
    width: 50%
}
.tourism-tile img {
    height: 100%;
	object-fit: cover;
}
.tourism-tile span {
    background-color: #6A8C7C;
    color: #fff;
    border-top-right-radius: 15px;
    padding: 1rem;
    position: absolute;
    left: 15px;
    bottom: 0;
}
.tourism-tile a {
    text-decoration: none;
}
/* Responsive: Stack tiles at smaller screens */
@media (max-width: 768px) {
    .tourism-tile {
        width: 100% !important; /* Force each tile to full width on mobile */
    }
    .tourism-row {
        display: flex;
        flex-direction: column;
    }
    .tourism-tile img {
        width: 100%;
    }
}