/**
 * Incentive Work Widget Styles
 *
 * @package Worxogo
 * @since 1.0.0
 */

.worxogo-incentive-work,
.worxogo-incentive-work * {
    box-sizing: border-box;
}

.worxogo-incentive-work {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 8px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.worxogo-incentive-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.worxogo-incentive-title {
    text-align: center;
    font-family: "Albert Sans", sans-serif;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 700;
    position: relative;
    width: 100%;
    margin: 0;
    color: #290074;
}

.worxogo-title-highlight {
    color: #4000a9;
    font-weight: 700;
}

.worxogo-roles-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
}

.worxogo-role-item {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.worxogo-role-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.worxogo-role-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    position: relative;
    overflow: visible;
}

.worxogo-role-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.worxogo-role-title {
    color: #290074;
    text-align: center;
    font-family: "Albert Sans", sans-serif;
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.worxogo-role-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}


.worxogo-role-description-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.worxogo-role-description-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.worxogo-checkmark {
    color: #28a745;
    font-family: "Albert Sans", sans-serif;
    font-size: 18px;
    line-height: 120%;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}

.worxogo-role-description-text {
    color: #4c4c4c;
    text-align: left;
    font-family: "Albert Sans", sans-serif;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    position: relative;
    flex: 1;
}

.worxogo-incentive-bottom-text {
    color: #4c4c4c;
    text-align: center;
    font-family: "Albert Sans", sans-serif;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
}

/* Responsive Design */
@media (max-width: 768px) {
    .worxogo-incentive-work {
        padding: 60px 40px;
        gap: 30px;
    }
    
    .worxogo-incentive-header {
        gap: 15px;
    }
    
    .worxogo-incentive-title {
        font-size: 32px;
    }
    
    .worxogo-roles-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .worxogo-role-item {
        padding: 30px 15px;
        gap: 15px;
    }
    
    .worxogo-role-icon {
        width: 50px;
        height: 50px;
    }
    
    .worxogo-role-title {
        font-size: 18px;
    }
    
    .worxogo-role-description-text {
        font-size: 14px;
    }
    
    .worxogo-checkmark {
        font-size: 16px;
    }
    
    .worxogo-incentive-bottom-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .worxogo-incentive-work {
        padding: 40px 20px;
        gap: 25px;
    }
    
    .worxogo-incentive-header {
        gap: 10px;
    }
    
    .worxogo-incentive-title {
        font-size: 28px;
    }
    
    .worxogo-roles-container {
        gap: 25px;
    }
    
    .worxogo-role-item {
        padding: 20px 10px;
        gap: 12px;
    }
    
    .worxogo-role-icon {
        width: 40px;
        height: 40px;
    }
    
    .worxogo-role-title {
        font-size: 16px;
    }
    
    .worxogo-role-description-text {
        font-size: 14px;
    }
    
    .worxogo-checkmark {
        font-size: 16px;
    }
    
    .worxogo-incentive-bottom-text {
        font-size: 16px;
    }
    
}