.block-editor .news-list-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}

.block-editor .news-list-block li {
    display: block;
    position: relative;
    background-color: #FF8181;
}
.block-editor .news-list-block li:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.block-editor .news-list-block li:nth-child(5n + 1) {
    background-color: #E0B6B6;
}
.block-editor .news-list-block li:nth-child(5n + 2) {
    background-color: #B4B4B4;
}
.block-editor .news-list-block li:nth-child(5n + 3) {
    background-color: #C0B7F2;
}
.block-editor .news-list-block li:nth-child(5n + 4) {
    background-color: #DE9CB9;
}

.block-editor .news-list-block li article {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    font-weight: 500;
    font-size: 17px;
    line-height: 1.325em;
}

.block-editor .news-list-block li article .bg-image {
    display: none;
}

.block-editor .news-list-block h2 {
    font-family: IKANSEEYOUALL;
    letter-spacing: 0.03em;
    font-weight: normal;
    font-size: 30px;
    line-height: 1.066em;
    margin-bottom: 0.4em;
    margin-top: 0;

    a {
        text-decoration: none;
    }
}

.block-editor .news-list-block .date {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.325em;
}
