.blog-sync-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .blog-sync-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-sync-posts {
        grid-template-columns: 1fr;
    }
}

.blog-sync-post {
    height: 100%;
}

.blog-sync-post__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-sync-post__link:hover,
.blog-sync-post__link:focus-visible {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.blog-sync-post__thumb {
    position: relative;
    padding-top: 50%;
    overflow: hidden;
}

.blog-sync-post__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h3.blog-sync-post__title,
.blog-sync-post__title {
    font-size: 20px;
    margin: 1rem 1rem 0.5rem;
}

.blog-sync-post__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-sync-post__excerpt {
    margin: 0 1rem 1rem;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.2;
    color:#000;
}
