.blog__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.blog__item {
    position: relative;
}

.blog__item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog__item-data {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 6px;
}

.blog__item-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.blog__item-name {
    margin: 22px 0;
    font-family: Onest;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #000000CC;
}

.blog__item-desc {
    font-family: Onest;
    font-size: 16px;
    font-weight: 300;
    line-height: 22.4px;
    color: #000000B2;
}

.blog__item--large {
    grid-column: span 2;
}



@media screen and (max-width: 768px) {
.blog__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog__item {
    width: 100%;
    position: relative;
}
.blog__item-name {
    margin: 5px 0;
    font-family: Onest;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
}
.blog__item-desc {
    font-family: Onest;
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
}
}