/* ============================================================
   INDUSTRY CARD SLIDER WIDGET - STYLES
   ============================================================ */

.ics-slider-wrapper-4cbbeb22 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Clip container - hides overflow on right edge for partial slide peek */
.ics-slider-clip-4cbbeb22 {
    overflow: hidden;
    padding-bottom: 50px;
}

.ics-swiper-4cbbeb22 {
    overflow: visible;
}

/* Card */
.ics-card-4cbbeb22 {
    position: relative;
    height: 650px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ics-card-4cbbeb22:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Card Image */
.ics-card-image-4cbbeb22 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ics-card-image-4cbbeb22 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ics-card-4cbbeb22:hover .ics-card-image-4cbbeb22 img {
    transform: scale(1.08);
}

/* Placeholder when no image */
.ics-card-placeholder-4cbbeb22 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Dark Gradient Overlay */
.ics-card-overlay-4cbbeb22 {
    --ics-overlay-start: rgba(0, 0, 0, 0.85);
    --ics-overlay-mid: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 32px;
    background: linear-gradient(
        to top,
        var(--ics-overlay-start) 0%,
        var(--ics-overlay-mid) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 45%;
}

/* Title */
.ics-card-title-4cbbeb22 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Description */
.ics-card-desc-4cbbeb22 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Arrows */
.ics-nav-prev-4cbbeb22,
.ics-nav-next-4cbbeb22 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ics-nav-prev-4cbbeb22 {
    left: 0;
}

.ics-nav-next-4cbbeb22 {
    right: 0;
}

.ics-nav-prev-4cbbeb22:hover,
.ics-nav-next-4cbbeb22:hover {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.3);
}

.ics-nav-prev-4cbbeb22:hover svg,
.ics-nav-next-4cbbeb22:hover svg {
    stroke: #ffffff;
}

/* Pagination */
.ics-pagination-4cbbeb22 {
    text-align: center;
    margin-top: 8px;
}

.ics-pagination-4cbbeb22 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c4c4c4;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.ics-pagination-4cbbeb22 .swiper-pagination-bullet-active {
    background: #1a1a2e;
    width: 28px;
    border-radius: 5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .ics-slider-wrapper-4cbbeb22 {
        padding: 20px 50px;
    }

    .ics-card-title-4cbbeb22 {
        font-size: 22px;
    }

    .ics-card-desc-4cbbeb22 {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .ics-card-overlay-4cbbeb22 {
        padding: 30px 22px 26px;
    }
}

@media (max-width: 767px) {
    .ics-slider-wrapper-4cbbeb22 {
        padding: 16px 40px;
    }

    .ics-card-title-4cbbeb22 {
        font-size: 20px;
    }

    .ics-card-desc-4cbbeb22 {
        font-size: 13px;
    }

    .ics-nav-prev-4cbbeb22,
    .ics-nav-next-4cbbeb22 {
        width: 36px;
        height: 36px;
    }

    .ics-nav-prev-4cbbeb22 svg,
    .ics-nav-next-4cbbeb22 svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .ics-slider-wrapper-4cbbeb22 {
        padding: 12px 12px;
    }

    .ics-nav-prev-4cbbeb22 {
        left: -4px;
    }

    .ics-nav-next-4cbbeb22 {
        right: -4px;
    }
}
