.featured-content-block .top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 11px;
    padding: 5px 0 5px 0;
}

.featured-content-block .top a {
    position: relative;
    display: block;
    max-height: 100%;
    overflow: hidden;
    height: 100%;
}

.featured-content-block .top a h2 {
    font-size: 16px;
    line-height: 21px;
    position: absolute;
    width: 100%;
    top: calc(50% - 22px);
    margin: 0;
    text-align: center;
    color: #fff;
}

.featured-content-block figure {
    height: 100%;
}

.featured-content-block figure img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.featured-content-block .top div img {
    height: 96px;
}

.featured-content-block .top div:nth-child(3) {
    grid-row: 5/5;
}

.featured-content-block .top div:first-child img {
    height: 100%;
}

.featured-content-block .top div:first-child h2 {
    width: 60%;
    left: calc(50% - 90px);
}

.featured-content-block .top div:nth-child(2) h2,
.featured-content-block .top div:nth-child(3) h2 {
    left: 15px;
    text-align: left;
    width: 60%;
}

.featured-content-block .top div:nth-child(4) h2 {
    top: 16px;
}

.featured-content-block .top div:nth-child(5) h2 {
    text-align: left;
    width: 60%;
    left: 40%;
}

.featured-content-block .top div:nth-child(3) figure img,
.featured-content-block .top div:nth-child(4) figure img {
    object-position: top;
}

/* Media Queries */
@media screen and (min-width: 450px) {
    .featured-content-block .top a h2 {
        top: calc(50% - 10px);
    }
}

@media screen and (min-width: 992px) {
    .featured-content-block .top {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .featured-content-block .top div {
        height: 96px;
    }

    .featured-content-block .top a h2 {
        top: calc(50% - 21px);
    }

    .featured-content-block .top div a figure {
        height: 100%;
    }

    .featured-content-block .top div:first-child {
        grid-row: 1/3;
        grid-column: 1/4;
        padding-right: 40px;
        height: 201px;
    }

    .featured-content-block .top div:nth-child(2) {
        grid-column: 4/7;
        padding-right: 10px;
    }

    .featured-content-block .top div:nth-child(3) {
        grid-column: 7/9;
        grid-row: 1/1;
    }

    .featured-content-block .top div:nth-child(4) {
        grid-column: 4/6;
        padding-right: 10px;
    }

    .featured-content-block .top div:nth-child(5) {
        grid-column: 6/9;
    }

    .featured-content-block .top div:nth-child(2) h {
        width: 55%;
    }
}