/* Layout Setup: Grid spacing & Flow */
.iic-grid-wrapper-9158c63b {
    display: grid;
    grid-auto-flow: row;
    width: 100%;
}

/* Card Container Configuration: Background color, borders and heights */
.iic-card-container-9158c63b {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 1;
    background-color: #161618; /* Default fallback */
    --card-bg-9158c63b: #161618;
    transition: all 0.35s ease-in-out;
}

/* Confine Image to TOP portion only */
.iic-bg-img-9158c63b {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.iic-bg-img-9158c63b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.35s ease-in-out;
}

/* Step Number OVERLAY in top left corner of the image with 20px added to top/left */
.iic-step-num-9158c63b {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    pointer-events: none;
}

/* Smooth gradient fade transitioning seamlessly into card background color */
.iic-image-fade-9158c63b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--card-bg-9158c63b));
    z-index: 2;
    pointer-events: none;
}

.iic-overlay-9158c63b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Content wrapper appears strictly BELOW image in sequential layout */
.iic-card-inner-9158c63b {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    z-index: 2;
    box-sizing: border-box;
    flex-grow: 1;
    background-color: transparent;
}

/* Floating Badge alignment wrapper & Circle badge */
.iic-badge-wrapper-9158c63b {
    display: flex;
    width: 100%;
    margin-top: -37px; /* Pull it up so it floats on the bottom of the top image section */
    margin-bottom: 24px;
    z-index: 5;
    position: relative;
    box-sizing: border-box;
}

.iic-circle-badge-9158c63b {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-radius: 50%;
    box-sizing: border-box;
}

.iic-circle-badge-9158c63b i,
.iic-circle-badge-9158c63b svg {
    display: block;
}

/* Pulse Ring Animation definition */
.iic-circle-badge-9158c63b.has-pulse-9158c63b::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid currentColor;
    border-radius: 50%;
    animation: iicPulseRing9158c63b 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes iicPulseRing9158c63b {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.iic-badge-custom-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* Content Elements Style Defaults */
.iic-subtitle-9158c63b {
    width: 100%;
    display: block;
}

.iic-heading-9158c63b {
    width: 100%;
    margin: 0;
}

.iic-desc-9158c63b {
    width: 100%;
}

/* Custom Icon List */
.iic-list-title-9158c63b {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
    width: 100%;
}

.iic-icon-list-9158c63b {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
}

.iic-icon-list-item-9158c63b {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #dddddd;
}

.iic-icon-list-item-9158c63b span.iic-list-icon-span-9158c63b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f26522;
}

.iic-icon-list-item-9158c63b span.iic-list-icon-span-9158c63b svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Button aligned inside its own flex container */
.iic-btn-container-9158c63b {
    display: flex;
    width: 100%;
    margin-top: auto;
}

.iic-btn-9158c63b {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.iic-btn-9158c63b i,
.iic-btn-9158c63b svg {
    transition: transform 0.3s ease;
}

.iic-btn-9158c63b:hover i,
.iic-btn-9158c63b:hover svg {
    transform: translateX(5px);
}
