.page-tiles-container {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.tile-item {
    background-color: #f4f0ec;
    display: flex;
    margin-bottom: 50px;
    align-items: flex-start;
}

.tile-left .tile-content {
    order: 2;
}

.tile-left .tile-img {
    order: 1;
}

.tile-right .tile-content {
    order: 1;
}

.tile-right .tile-img {
    order: 2;
}

.tile-img {
    width: 50%;
    height: auto;

}

.tile-content {
    width: 50%;
    padding: 20px;
}

.tile-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.tile-meta-item {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Dodaje odstęp między ikonami */
}

.tile-description {
    padding-bottom: 20px;
    padding-top: 20px;
    font-weight: 100;
    margin-bottom: 15px;
}

.tile-btn-room {
    background-color: #AB916C;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    
}

.tile-btn-room:hover {
    background-color: white;
    color: #AB916C;
}

/* Zastosuj styl 'object-fit: cover' do zdjęć w kafelkach */
.tile-img {
    width: 50%;
    height: 400px !important;
    object-fit: cover;
}
/* Styl dla poziomego wyświetlania ikon */
.tile-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: start; /* Aby ikony były wyświetlane w linii, zmieniaj na 'space-between' dla rozłożenia na szerokość */
}

