.gcc-grid-row {
    display: grid;
    grid-gap: 20px;
}
@media (min-width: 600px) {
    .gcc-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .gcc-grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .gcc-grid-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
.infobox .infobox-contents .infobox-image {
    position: relative;
}
.infobox .infobox-contents .infobox-image .infobox-tag-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
}
.infobox .infobox-contents .infobox-image .infobox-image-wrap {
    width: 100%;
    position: relative;
    height: 150px;
    line-height: 150px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.infobox .infobox-contents .infobox-image .infobox-tag-wrap .infobox-tag {
    display: inline-block;
    padding: 10px;
    border-radius: 20px;
    background-color: #eee;
    color: #fff;
    font-family: "Gilroy", Sans-Serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
}
.infobox
    .infobox-contents
    .infobox-image
    .infobox-tag-wrap
    .infobox-tag.tag-new {
    background-color: #18ba45;
}
.infobox
    .infobox-contents
    .infobox-image
    .infobox-tag-wrap
    .infobox-tag.tag-coming-soon {
    background-color: #eda02a;
}
.infobox .infobox-contents .infobox-image .infobox-image-wrap img {
    position: absolute;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
