/**
 * Simple Instagram Feed Styles
 */

.sif-feed-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.sif-feed-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1; /* Make items square */
}

.sif-feed-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.sif-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.sif-feed-item:hover img {
    transform: scale(1.05);
}

.sif-video-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 24px;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    pointer-events: none; /* Allows clicks to go through to the link */
}
