.tiles-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки по умолчанию */
    gap: 10px; /* Отступы между блоками */
}

.tile {
    flex: 1 0 calc(25% - 10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tile-title {
    margin: 10px 0;
    font-weight: bold;
    color: #333;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 767px) {
    .tiles-container {
        grid-template-columns: 1fr; /* 1 колонка для мобильных устройств */
    }

    .tile {
        flex: 1 0 100%; /* Занимает 100% ширины */
    }
}
