.gic-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.gic-viewport {
	overflow: hidden;
	width: 100%;
}

.gic-track {
	display: flex;
	gap: var(--gic-gap, 0px);
	width: max-content;
	animation: gic-marquee var(--gic-duration, 30s) linear infinite;
	
}

.gic-carousel[data-paused="true"] .gic-track {
	animation-play-state: paused;
}

.gic-slide {
	flex: 0 0 auto;
	width: calc((100vw) / var(--gic-slides-to-show, 5));
	max-width: 320px;
	min-width: 0;
}

@keyframes gic-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.gic-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
}

.gic-card-icon img {
	display: block;
	object-fit: contain;
}

.gic-card-title {
	font-size: 16px;
	line-height: 1.4;
}


/* ---------- Navigation arrows ---------- */

.gic-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	z-index: 10;
	transition: opacity 0.15s ease;
}

.gic-arrow:hover {
	opacity: 0.75;
}

.gic-arrow--prev {
	left: 12px;
}

.gic-arrow--next {
	right: 12px;
}

/* ---------- Pagination dots ---------- */

.gic-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}

.gic-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.gic-arrow {
		width: 32px !important;
		height: 32px !important;
	}
}

@media (max-width: 600px) {
	.gic-arrow {
		display: none;
	}
}
