#faq-menu {
    padding: 30px 15px 0;
}

#faq-menu .tile {
    display: flex;
    background-color: rgba(226, 222, 224, 0.1);
    color: white;
    padding: 45px 0;
    transition: transform 0.25s ease-in-out, filter 0.25s ease-in-out;
}

#faq-menu .tile:hover {
    transform: scale(1.1);
    z-index: 3;
    filter: brightness(1.3);
}

#faq-menu .tile::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: '';
    /* fallback color is combination of #CD201F and #AA1D1D */
    background: #BC1F1E url(../img/bg_rectangle_tile.svg) no-repeat center;
    background-size: cover;
}

#faq-menu .tile > div {
    margin: auto 0;
    z-index: 2;
}

#faq-menu .row.is-flex:first-child .tile {
    border-width: 0;
}

#faq-menu .tile > span {
    margin-top: 0;
    z-index: 2;
}

#faq-menu .tile > div > h2 {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 0;
}

#faq-menu-tutorials {
    margin: 15px 15px 0;
    padding: 0;
}

/* Use fixed width and left margin to center this tile.
 * This is necessary since the big tiles have an extra margin between each other.
 */

@media (min-width: 768px) {
    #faq-menu-tutorials article.tile {
        margin-left: calc((660px - 328px) / 2)
    }
}

@media (min-width: 992px) {
    #faq-menu-tutorials article.tile {
        max-width: 276px;
        margin-left: 286px;
    }
}

@media (min-width: 1200px) {
    #faq-menu-tutorials article.tile {
        max-width: 343px;
        margin-left: 353px;
    }
}
