/* Emkay Instagram Marquee */
.emkay-ig-marquee {
    width: 100%;
    overflow: hidden;
}

.emkay-ig-heading-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.emkay-ig-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.emkay-ig-handle {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #4CAF50;
}

/* Viewport clips overflow */
.emkay-ig-viewport {
    width: 100%;
    overflow: hidden;
}

/* Track holds 2x clones side by side */
.emkay-ig-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

/* Image items */
.emkay-ig-item {
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    display: block;
}

.emkay-ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.emkay-ig-item:hover img {
    transform: scale(1.05);
}

/* Default sizes */
.emkay-ig-item--large {
    width: 343px;
    height: 364px;
}

.emkay-ig-item--small {
    width: 224px;
    height: 298px;
}

/* Marquee animation – created dynamically by JS */
.emkay-ig-track.emkay-running {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

.emkay-ig-marquee[data-pause="true"]:hover .emkay-ig-track.emkay-running {
    animation-play-state: paused;
}

/* Direction keyframes injected by JS */
