.blog-list__wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
    .blog-list__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .blog-list__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .blog-list__wrapper {
        gap: 12px;
        grid-template-columns: 1fr;
    }
}
.blog-list-item {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    background: #F6F9FC;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}
.blog-list-item:hover, .blog-list-item:active, .blog-list-item:focus {
    box-shadow: 0 0 8px rgba(151, 162, 172, 0.4);
}
.blog-list-item__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.blog-list-item__top {
    width: 100%;
}
.blog-list-item__name {
    min-height: 72px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 0;
}
@media (max-width: 1920px) {
    .blog-list-item__name {
        font-size: 16px;
        min-height: 58px;
    }
}
.blog-list-item__name a {
    font-size: inherit;
    transition: all 0.3s ease;
    color: #163560;
}
.blog-list-item__name a:hover, .blog-list-item__name a:active, .blog-list-item__name a:focus {
    text-decoration: unset;
    color: #175CFF;
}
.blog-list-item__top-content {
    padding: 20px 24px 0 20px;
}
@media (max-width: 1920px) {
    .blog-list-item__top-content {
        padding: 16px 20px 0 20px;
    }
}
@media (max-width: 767px) {
    .blog-list-item__top-content {
        padding: 12px 16px 0 16px;
    }
}
.blog-list-item__bottom {
    margin-top: 12px;
    width: 100%;
    padding: 0 24px 24px 24px;
}
@media (max-width: 1650px) {
    .blog-list-item__bottom {
        padding: 0 20px 20px 20px;
    }
}
@media (max-width: 767px) {
    .blog-list-item__bottom {
        padding: 0 16px 16px 16px;
    }
}
.blog-list-item__date {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(22, 53, 96, 0.5);
}
@media (max-width: 1920px) {
    .blog-list-item__date {
        font-size: 12px;
    }
}
.blog-list-item__stickers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .blog-list-item__stickers {
        margin-bottom: 4px;
    }
}
.blog-list-item__sticker {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(22, 53, 96, 0.5);
    margin-bottom: 4px;
    margin-right: 12px;
}
@media (max-width: 1920px) {
    .blog-list-item__sticker {
        font-size: 12px;
        margin-bottom: 4px;
        margin-right: 8px;
    }
}
.blog-list-item__sticker:last-child {
    margin-right: 0;
}
