/* Instagram Feed Section */
.homepage-instagram-section {
    background: #ffffff;
    padding: 80px 20px;
    margin: 0;
}

.homepage-instagram-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.homepage-instagram-section .section-title {
    color: #40a639;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Remove the underline */
.homepage-instagram-section .section-title::after {
    display: none;
}

.homepage-instagram-section .instagram-feed-wrapper {
    width: 100%;
}

/* Style Instagram plugin buttons to match site buttons */
.homepage-instagram-section .sbi_load_btn,
.homepage-instagram-section .sbi_follow_btn a {
    display: inline-block;
    background: #40a639 !important;
    color: white !important;
    padding: 16px 48px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    border: none !important;
    cursor: pointer;
}

.homepage-instagram-section .sbi_load_btn:hover,
.homepage-instagram-section .sbi_follow_btn a:hover {
    background: #359030 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 179, 46, 0.3) !important;
}

/* Hide the Instagram icon in follow button */
.homepage-instagram-section .sbi_follow_btn svg {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .homepage-instagram-section {
        padding: 50px 20px;
    }

    .homepage-instagram-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    /* Force 2 columns on mobile */
    .homepage-instagram-section #sbi_images {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .homepage-instagram-section {
        background: #111111;
    }

    .homepage-instagram-section .section-title {
        color: #40a639;
    }
}

/* News section title fixes */
.news-section-columns .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-section-columns .section-title::after {
    display: none;
}
