.instagram-section {
    padding: 60px 0;
    background: #fff;
}

.ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ig-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ig-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
}

.ig-profile p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.ig-follow {
    background: #E1306C;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.ig-follow:hover {
    background: #c2265c;
    color: #fff;
}

/* INSTAGRAM EMBED */
.ig-grid iframe {
    width: 100%;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
}