/* news.css */
.news-insights-container {
    padding: 60px 0;
}

.fb-full-width-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fb-hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.btn-visit-us {
    background-color: #1877f2;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}

.btn-visit-us:hover {
    background-color: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.fb-plugin-container {
    width: 100%;
    /*
        display: flex;
        justify-content: center;
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        border: 1px solid #f0f2f5;
    */
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);*/
    border: 0px solid #f0f2f5;
    padding-left: 30%;
    padding-right: 30%;

}

/* Force Facebook plugin to be as wide as possible */
.fb-page,
.fb-page span,
.fb-page iframe {
    width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 868px) {
    .btn-visit-us {
        padding: 12px 30px;
        font-size: 16px;
    }

    .fb-plugin-container {
        padding: 0;
    }
}