.hc-15720401-wrapper {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: transparent !important; /* Force transparent background */
}

.hc-15720401-scroll-outer {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 20px;
}

.hc-15720401-scroll-outer::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.hc-15720401-scroll-inner {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-left: 24px;
    padding-right: 24px;
}

/* Perfect full-bleed scroll track alignment to 1200px content edge */
@media (min-width: 1248px) {
    .hc-15720401-scroll-inner {
        padding-left: calc((100vw - 1200px) / 2 + 24px);
        padding-right: calc((100vw - 1200px) / 2 + 24px);
    }
}

.hc-15720401-card {
    /* Exact 4 columns on desktop with gap considered to avoid 4.5 fractions */
    flex: 0 0 calc((100vw - (100vw - 1200px) - 48px - (24px * 3)) / 4);
    aspect-ratio: 1 / 1;
    min-width: 335px;
    box-sizing: border-box;
    padding: 32px 24px;
    scroll-snap-align: start;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (max-width: 1247px) {
    .hc-15720401-card {
        flex: 0 0 calc((100vw - 48px - 72px) / 4); /* Exactly 4 cards on viewport */
    }
}

.hc-15720401-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.hc-15720401-card-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    background-color: #ebf8ff; /* Default background */
    border-radius: 8px; /* Rounded corners */
    color: #3182ce; /* Default icon color */
}

.hc-15720401-card-icon i {
    font-size: 24px;
    color: inherit !important;
}

.hc-15720401-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor !important;
    display: block;
}

.hc-15720401-card-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
	height:3.35em;
}

.hc-15720401-card-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-15720401-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.hc-15720401-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hc-15720401-dot.active {
    transform: scale(1.2);
}

/* Responsive Columns Rules */
@media (max-width: 1024px) {
    .hc-15720401-card {
        flex: 0 0 calc((100vw - 48px - 48px) / 3); /* Exactly 3 columns on tablet */
    }
}

@media (max-width: 768px) {
    .hc-15720401-card {
        flex: 0 0 calc((100vw - 48px - 24px) / 2); /* Exactly 2 columns on small tablet */
    }
}

@media (max-width: 480px) {
    .hc-15720401-card {
        flex: 0 0 calc(100vw - 48px); /* Exactly 1 column on mobile */
    }
}