.hnojik-fb-feed--scroll {
    --hnojik-fbp-h: 600px;
    --hnojik-fbp-w: 900px;
    max-width: var(--hnojik-fbp-w);
    margin: 24px auto;
    position: relative;
}

.hnojik-fbp-scroller {
    height: var(--hnojik-fbp-h);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 0;
}

/* Slim visible scrollbar */
.hnojik-fbp-scroller::-webkit-scrollbar {
    width: 8px;
}
.hnojik-fbp-scroller::-webkit-scrollbar-track {
    background: rgba(0,0,0,.04);
    border-radius: 4px;
}
.hnojik-fbp-scroller::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.28);
    border-radius: 4px;
}
.hnojik-fbp-scroller::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,.45);
}
.hnojik-fbp-scroller {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.28) rgba(0,0,0,.04);
}

.hnojik-fbp-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    padding-bottom: 4px;
}

.hnojik-fbp-card:nth-child(2n) {
    border-right: none;
}

.hnojik-fbp-img-link {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.hnojik-fbp-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hnojik-fbp-body {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hnojik-fbp-date {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.hnojik-fbp-text {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
}

.hnojik-fbp-link {
    align-self: flex-start;
    color: #2c7a2e;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    margin-top: 4px;
}

.hnojik-fbp-link:hover {
    text-decoration: underline;
}

.hnojik-fbp-hint {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
    user-select: none;
}

.hnojik-fb-feed--empty {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    color: #6b7280;
    text-align: center;
}

/* Mobile — single column */
@media (max-width: 640px) {
    .hnojik-fb-feed--scroll {
        max-width: 100%;
    }
    .hnojik-fbp-scroller {
        grid-template-columns: 1fr;
    }
    .hnojik-fbp-card {
        border-right: none;
    }
}
