
    #aca-ig-section {
        background: var(--secondary);
        padding: var(--sectionPadding);   
        display:flex;
        flex-direction:column;
        align-items:center;
    }
    #aca-ig-section .title {
        color: var(--primary);
        max-width: 80rem;
        width:100%;
        text-align:left;
        
    }
    #aca-ig-section .ig-feed {max-width: 80rem;
        display: flex;
        flex-direction: column;
        gap: 12px;
     
        margin: 0 auto;
    }
      /* === BANNER === */
    #aca-ig-section .ig-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 80rem;
        width: 100%;
        margin: 0 auto 16px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(128,128,128,0.15);
        gap: 12px;
    }
    #aca-ig-section .ig-banner-left {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    #aca-ig-section .ig-avatar-ring {
        padding: 2.5px;
        border-radius: 50%;
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        flex-shrink: 0;
    }
    #aca-ig-section .ig-avatar-inner {
        background: var(--bg, #fff);
        border-radius: 50%;
        padding: 2px;
        display: flex;
    }
    #aca-ig-section .ig-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }
    #aca-ig-section .ig-banner-name {
        font-size: 15px;
        font-weight: 600;
        color: var(--primary);
        margin: 0 0 2px;
    }
    #aca-ig-section .ig-banner-handle {
        font-size: 13px;
        color: #888;
        margin: 0;
    }
    #aca-ig-section .ig-follow-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 22px;
        border-radius: 8px;
        background: #0095f6;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.15s ease;
        flex-shrink: 0;
    }
    #aca-ig-section .ig-follow-btn:hover {
        background: #0086e0;
    }
    #aca-ig-section .ig-follow-btn svg {
        width: 14px;
        height: 14px;
        fill: #fff;
    }

    @media (min-width: 768px) {
        #aca-ig-section .ig-feed {
            flex-direction: row;
        }
    }

    #aca-ig-section .ig-post {
        flex: 1;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        display: block;
        aspect-ratio: 1 / 1;
    }

    #aca-ig-section .ig-post img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    #aca-ig-section .ig-post .ig-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 16px;
    }

    #aca-ig-section .ig-post .ig-caption {
        color: var(--primary);
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

#aca-ig-section .ig-post .ig-reel-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;                        /* was missing semicolon on top line */
    transform: translate(-50%, -50%);
    z-index: 2;
}

    #aca-ig-section .ig-post .ig-reel-icon svg {
        width: 22px;
        height: 22px;
        fill: white;
    }