/**
 * Guarantee Banner Widget Stylesheet
 * @package Impact_Custom_Widget
 */

.icw-guarantee-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.icw-guarantee-banner {
    width: 100%;
    max-width: 1140px;
    background-color: #F4F6F9;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.icw-guarantee-content {
    flex: 1;
    max-width: 580px;
    display: flex;
    flex-direction: column;
}

.icw-guarantee-subheading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2A85C8;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.icw-guarantee-title {
    margin: 0 0 14px 0;
    font-size: 34px;
    font-weight: 800;
    color: #1D3B6C;
    line-height: 1.25;
}

.icw-guarantee-desc {
    margin: 0 0 30px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #556987;
}

/* Sub-feature satisfaction box */
.icw-guarantee-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icw-feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #DCEAF8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icw-feature-icon-circle i,
.icw-feature-icon-circle svg {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: #1D3B6C;
    fill: #1D3B6C;
}

.icw-feature-text-group {
    display: flex;
    flex-direction: column;
}

.icw-feature-item-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1D3B6C;
    letter-spacing: 0.02em;
}

.icw-feature-item-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #556987;
}

/* Right Badge Image */
.icw-guarantee-badge-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icw-guarantee-badge-wrap img {
    max-width: 380px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .icw-guarantee-banner {
        padding: 40px;
        gap: 30px;
    }

    .icw-guarantee-title {
        font-size: 28px;
    }

    .icw-guarantee-badge-wrap img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .icw-guarantee-banner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .icw-guarantee-content {
        max-width: 100%;
        align-items: center;
    }

    .icw-guarantee-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icw-guarantee-badge-wrap img {
        max-width: 260px;
    }
}
