/* Instagram Section Placeholder Styles */
.instagram-feature-image {
    background-color: #e0e0e0;
    background-image: 
        linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 50%, #f0f0f0 50%, #f0f0f0 75%, transparent 75%, transparent),
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 50%, #e0e0e0 50%, #e0e0e0 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
}

.instagram-feature-image::before {
    content: "Instagram Feature Image";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Instagram icon placeholder */
.instagram-feature-image::after {
    content: "\f16d"; /* Font Awesome Instagram icon */
    font-family: "Font Awesome 6 Brands";
    font-size: 3rem;
    color: #1e3a8a;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}
