/* WP Social Feed Styles */

.wsf-error {
    color: red;
    font-weight: bold;
    padding: 10px;
    background: #ffe6e6;
    border: 1px solid #ffcccc;
}

/* Facebook Feed */
.wsf-facebook-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wsf-fb-post {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wsf-fb-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wsf-fb-content p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.wsf-fb-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.wsf-fb-meta a {
    text-decoration: none;
    color: #3b5998;
    font-weight: 500;
}

/* Instagram Feed */
.wsf-instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.wsf-ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wsf-ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wsf-ig-post:hover img {
    transform: scale(1.05);
}

.wsf-ig-post a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Follow Button */
.wsf-ig-follow-button:hover {
    opacity: 0.8;
}
