/* Benefit Hero Section Widget Styles */

.sp-benefit-hero {
    padding: 100px 0;
    background-color: var(--nexros-bg);
    position: relative;
    overflow: hidden;
}

.sp-benefit-hero .sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px !important;
}

.sp-benefit-hero__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sp-benefit-hero.pos-right .sp-benefit-hero__inner {
    flex-direction: row-reverse;
}

/* Image Column */
.sp-benefit-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sp-benefit-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--borderRadiusLg);
    /* Removed drop-shadow as per design trends in this theme */
}

/* Content Column */
.sp-benefit-hero__content {
    flex: 1;
}

.sp-benefit-hero__content .title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--primaryFont);
}

.sp-benefit-hero__content .description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(26, 236, 187, 0.1);
    border: 1px solid rgba(26, 236, 187, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nexros-teal);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--nexros-teal);
    color: #000;
    transform: translateY(-5px);
}

.feature-text .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-text .feature-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .sp-benefit-hero__inner {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .sp-benefit-hero__inner {
        flex-direction: column !important;
        text-align: center;
        gap: 60px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
    }

    .sp-benefit-hero__content .title {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .sp-benefit-hero {
        padding: 60px 0;
    }
}