/* =====================================
   Incident Response Section
===================================== */
.incident-response-section {
    /* padding: 8rem 0; */
    border-top: 0.1rem solid rgba(var(--light-rgb), 0.05);
    background: #060606;
}

.incident-response-content {
    display: flex;
    gap: 6.7rem;
    align-items: center;
}

.incident-response-left {
    flex: 1;
}

.incident-response-right {
    flex: 1;
}

.incident-image-container {
    position: relative;
    border-radius: 1.91rem;
    overflow: hidden;
    height: 54rem;
}

.incident-image-container img.incident-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.91rem;
}

.incident-timeline-overlay {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    right: 2.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: space-between;
}

.timeline-step {
    flex: 1;
    backdrop-filter: blur(8px);
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    background: rgba(var(--black-rgb), 0.80);
    padding: 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.timeline-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.29353;
}

.timeline-desc {
    color: rgba(var(--light-rgb), 0.40);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* .incident-response-right .section-kicker {
    margin-bottom: 1.6rem;
    display: inline-block;
} */

.incident-response-right .section-title {
    margin-bottom: 2.4rem;
}

.incident-response-right .section-desc {
    color: rgba(var(--light-rgb), 0.55);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.9104rem;
    /* 181.903% */
    margin-bottom: 1.91rem;
}

.feature-list {
    margin-top: 3.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.feature-list .list-icon {
    color: #F15927;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-list .list-text {
    color: rgba(var(--light-rgb), 0.65);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .incident-response-content {
        flex-direction: column;
        gap: 4rem;
    }

    .incident-image-container {
        height: auto;
        aspect-ratio: 1;
    }
}
