/*
Theme Name: NoFrame Child Tema
Description: NoFrame Child Tema
Author: NoFrameSOFT
Author URI: https://noframesoft.com.tr
Template: hello-elementor
Version: 1.0.0
*/
/* Buraya child tema için stil kodlarınızı ekleyin */
.instagram-feed-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.instagram-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.instagram-card:hover {
    transform: scale(1.02);
}

.instagram-image img {
    width: 100%;
    height: auto;
    display: block;
}

.instagram-caption {
    padding: 10px;
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



@media (min-width: 768px) {
    .instagram-feed-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
