.featured-items {
    display: none;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .featured-items {
        display: grid;
    }
}

.featured-item {
    position: relative;
    padding: 80px 20px 5px;
    display: flex;
    text-decoration: none;
    display: block;
    background-position: center;
}

.featured-item h3 {
    color: white;
    text-decoration: none;
    z-index: 10;
    position: relative;
    margin-bottom: 0;
    line-height: 1;
}

.featured-item-overlay {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(.97%, #000), color-stop(84.63%, transparent));
    background: linear-gradient(1turn, #000 .97%, transparent 84.63%);
}