.iscg-container { width: 100%; overflow: hidden; font-family: inherit; padding: 40px 0; }
.iscg-title { font-size: 38px; font-weight: 700; margin-bottom: 40px; padding: 0 20px; }
.iscg-marquee-wrapper { display: flex; flex-direction: column; }
.iscg-marquee { width: 100%; overflow: hidden; white-space: nowrap; display: flex; }
.iscg-track { display: flex; align-items: center; animation: iscg-scroll linear infinite; width: max-content; padding-right: var(--gap, 20px); }
.iscg-track:hover { animation-play-state: paused; }
.iscg-track.iscg-reverse { animation-direction: reverse; }
.iscg-img { width: auto; object-fit: cover; display: block; flex-shrink: 0; transition: transform 0.3s ease; }
.iscg-img:hover { transform: scale(1.03); cursor: pointer; }
@keyframes iscg-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .iscg-title { font-size: 28px; } .iscg-img { height: 120px !important; } }