.facebook-feeds h2.section-title.center-text {
    margin-bottom: 80px;
}

.facebook-feeds__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 3%;
}

.facebook-feed {
    flex: 1 1 30%;
    /*box-shadow: 0 0 15px #ccc;*/
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.facebook-feed a {
    color: inherit;
}

.facebook-feed__preview {
    height: 300px;
    display: flex;
}

.facebook-feed__preview img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.facebook-feed__preview--video:before {
    content: "\ebbe";
    
    font-family: boxicons!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    text-shadow: 0 0 15px #000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    
    content: "\eeef";
    align-items: flex-start;
    justify-content: right;
    font-size: 21px;
    padding: 5px 10px;

}

.facebook-feed__text {
    padding: 10px;
    max-height: 127px;
    font-size: 16px;
    font-weight: normal;
}

.facebook-feed__preview + .facebook-feed__text {
    position: absolute;
    bottom: 0;
    background: rgb(255 255 255 / 84%);
    /*height: 70px;*/
    left: -1px;
    right: -1px;
}


.facebook-feeds--dark {
    background-color: #000;
    padding: 75px 0;
}

.facebook-feeds--dark h2 {
    color: #fff;
}


.facebook-feeds--dark .facebook-feed {
    box-shadow: 0 0 0px;
    /*box-shadow: 0 0 3px #5e5e5e;*/
    background-color: #0a0a0a;
}

.facebook-feeds--dark .facebook-feed a {
    color: #fff;
}

.facebook-feeds--dark .facebook-feed__preview + .facebook-feed__text {
    background: rgb(10 10 10 / 84%);
}

.facebook-feeds__list.slick-slider {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.facebook-feeds .slick-track {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 580px) {
    .facebook-feeds .slick-track {
        gap: 15px;
    }
}

.facebook-feeds .slick-arrow {
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.facebook-feeds--dark .slick-arrow {
    color: #eee;
}
/*
.facebook-feeds__list {
    column-count: 3;
    column-gap: 30px;
}

.facebook-feed {
    margin: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    margin-bottom: 10px;
    break-inside: avoid;
}

.facebook-feed img {
    width: 100%;
    grid-row: 1 / -1;
    grid-column: 1;
}

.facebook-feed__text {
    padding: 10px;
}
*/