/* ==========================================================================
   Siatka kategorii oraz płytek promocyjnych
   ========================================================================== */

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2);
    gap: 1rem;
}

.tile {
    aspect-ratio: 1 / 1;
}

.special-tile {
    aspect-ratio: 4 / 3;
}

.tile,
.special-tile {
    position: relative;
    border-radius: 0.7rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 22px/20px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.tile:hover,
.special-tile:hover {
    background-size: 115% 115%;
    transition: background-size 0.5s ease-in-out;
    cursor: pointer;
}

.tile-1 {
    grid-column: span 2;
    grid-row: span 2;
    background-color: #a47c68;
}