.farnost-fb-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .farnost-fb-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .farnost-fb-feed {
        grid-template-columns: 1fr;
    }
}

.farnost-fb-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.farnost-fb-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.farnost-fb-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.farnost-fb-date {
    display: block;
    font-size: .8rem;
    color: #6b7280;
    margin-bottom: .4rem;
}

.farnost-fb-text {
    margin: 0 0 .75rem;
    flex: 1;
}

.farnost-fb-link {
    font-size: .9rem;
    color: #1877f2;
    text-decoration: none;
    margin-top: auto;
}

.farnost-fb-link:hover {
    text-decoration: underline;
}
