.jb-post-loader {
    width: 100%;
}

.jb-post-loader__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.jb-post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.jb-post-card__image-link {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.jb-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jb-post-card__content {
    padding: 20px;
}

.jb-post-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
}

.jb-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.jb-post-card__meta {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.65;
}

.jb-post-card__excerpt {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.55;
}

.jb-post-card__read-more {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}

.jb-post-loader__actions {
    margin-top: 32px;
    text-align: center;
}

.jb-post-loader__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}

.jb-post-loader__button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.jb-post-loader__empty {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .jb-post-loader__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .jb-post-loader__grid {
        grid-template-columns: 1fr;
    }
}