.socialMediaContainer {
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        color: #474747;
        font-size: 34px;
        font-weight: 800;
        max-width: 300px;
        padding-bottom: 40px;
        text-align: center;
    }

    .facebook-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-bottom: 100px;
        width: 100%;
    
        .facebook-slider {
            display: flex;
            max-width: 1150px;
            gap: 10px;
            overflow-x: hidden; 
            scroll-behavior: smooth;
            flex: 1;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    
            .facebook-item {
                width: 280px;
                flex-shrink: 0;
                background-color: #fff;
                box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
    
                .postImg {
                    height: 240px;
                    width: 100%;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                }
    
                .facebookLogo {
                    position: absolute;
                    top: 210px; 
                }
    
                .postContent {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: center;
                    padding: 35px 15px 15px 15px;
    
                    * {
                        margin: 0px;
                    }
    
                    .post-profile-name {
                        font-size: 21px;
                        color: #474747;
                    }
    
                    .nameAndDate {
                        display: flex;
                        margin-bottom: 20px;
    
                        .post-profile-fb {
                            font-size: 13px;
                            color: #474747;
                        }
    
                        .post-date-fb {
                            font-size: 13px;
                            color: #474747;
                        }
                    }
    
                    .post-text-fb {
                        font-size: 21px;
                        color: #474747;
                        text-align: center;
                        height: 150px;
                    }
    
                    .read-more-fb {
                        width: 100%;
                        font-size: 13px;
                        color: #474747;
                        text-decoration: underline;
                        text-align: end;
                        transition: 0.2s;
                    }
                }
            }
        }
    
        .slider-arrow {
            background-color: #fff;
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.25);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            z-index: 1;
            padding: 0px;
        }
    
        .left-arrow {
            margin-right: 20px;
        }
        
        .right-arrow {
            margin-left: 20px;
        }
    }
}

@media (min-width: 1024px) {
    .facebook-slider-wrapper
    .facebook-slider
    .facebook-item
    .postContent {
        .read-more-fb:hover {
            color: #0056b3;
        }
    }
}


@media (max-width: 768px) {
    .facebook-item {
        min-width: 250px;
    }

    .socialMediaContainer {
        h3 {
            font-size: 24px;
        }

        .facebook-slider-wrapper {
            padding: 10px;
            padding-bottom: 70px;
            
            .facebook-slider {
                max-width: 280px;
            }

            .slider-arrow {
                width: 30px;
                height: 30px;

                svg {
                    height: 20px;
                }
            }
        }
    }
}