.instagram-feed .content-element__title {
    margin-bottom: 2rem;
}
.instagram-feed__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.instagram-feed__item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: .5rem;
}
.instagram-feed__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.instagram-feed__item:hover .instagram-feed__img {
    transform: scale(1.05);
}
@media (max-width: 767.98px) {
    .instagram-feed__grid {
        grid-template-columns: 1fr;
    }
}
