.iitc-6604-container {
	overflow: hidden;
	width: 100%;
	position: relative;
    cursor: grab;
    touch-action: pan-y; /* Allow vertical scroll but capture horizontal */
    user-select: none; /* Prevent text selection while dragging */
}

.iitc-6604-container:active {
    cursor: grabbing;
}

.iitc-6604-track {
	display: flex;
	width: max-content; /* Critical: allow it to expand freely */
    align-items: center;
    /* Transformation is handled by JS */
    will-change: transform;
}

.iitc-6604-item {
	display: flex;
	align-items: center; /* Vertically center icon relative to text block */
	justify-content: center;
	flex-shrink: 0;
    text-decoration: none; /* For links */
    color: inherit;
    text-align: left;
}

.iitc-6604-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0; /* Don't shrink icon */
}

.iitc-6604-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iitc-6604-title {
    white-space: nowrap;
    line-height: 1.2;
    display: block;
}

.iitc-6604-subtext {
    white-space: nowrap;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
}
