.fb-posts-swiper .swiper-slide {
    height: auto;
    display: flex;
}

article.fb-post-card {
    padding: .75rem;
    background: var(--background-gray-light);
    display: flex;
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    /*box-shadow: var(--shadow-md);*/
    /*transition: box-shadow 0.2s ease-in;*/
}

.fb-post-card.product-miniature:hover {
    /*box-shadow: var(--shadow-lg);*/
}

.fb-post-card .post-thumbnail-container {
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    height: 180px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin: 0 0 .75rem 0 !important;
}

.fb-post-card .fb-no-image,
.fb-post-card .post-thumbnail-container a {
    height: 100%;
}

.fb-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.fb-post-card .fb-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-post-card .fb-no-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.fb-icon-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    color: #3b5998;
    font-size: 16px;
    background: rgba(255,255,255,0.8);
    padding: 2px 5px;
    border-radius: 4px;
}

.fb-post-card  .post-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.fb-post-card  .post-content-wrapper .post-description {
    overflow: hidden;
    max-height: 60px;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.fb-post-card  .post-content-wrapper .post-description a {
    font-size: var(--font-normal);
    color: var(--text-dark) !important;
}

.fb-post-card .post-stats-container {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}
.fb-post-card .post-stats-container > span {
    position: relative;
    display: inline-block;
    color: var(--text-dark) !important;
}

.fb-post-card .post-stats-container > span:not(:last-child) {
    border-right: 1px solid var(--background-gray-dark);
    padding-right: .75rem;
}

.fb-post-card .fb-post-footer {
    margin-top: auto;
}

.fb-post-card .fb-post-footer a {
    background: #1877F2 !important
}