.remote-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.remote-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    min-width: 0;
    height: 100%;
}

.remote-post-image-link {
    display: block;
    text-decoration: none;
}

.remote-post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.remote-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.remote-post-image-link:hover img {
    transform: scale(1.04);
}

.remote-post-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
}

.remote-post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 28px;
}

.remote-post-title {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.remote-post-title a {
    color: inherit;
    text-decoration: none;
}

.remote-post-title a:hover {
    opacity: 0.75;
}

.remote-post-excerpt {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.55;
}

.remote-post-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;

    font-size: 14px;
    font-weight: 600;
}

.remote-post-author::after {
    content: "";
    margin-left: 12px;
    border-left: 1px solid currentColor;
}


/* TABLET */

@media (max-width: 1024px) {

    .remote-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .remote-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .remote-post-content {
        padding: 22px;
    }

    .remote-post-title {
        font-size: 22px;
    }

}
