/* =========================================
   OPTIVIEW GRADIENT LIST (STANDALONE)
   ========================================= */
.optiview-check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.optiview-check-list li {
    display: flex;
    align-items: flex-start;
    column-gap: 0.5em; 
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3; 
}

.optiview-check-list li span {
    flex: 1; 
    white-space: normal; 
    word-break: break-word; 
}

.optiview-check-list li::before {
    content: "";
    display: inline-block;
    flex-shrink: 0; 
    
    width: 24px;
    height: 24px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 0px;
    border-radius: 25px;
    margin-top: 2px;
    /* 1. White checkmark SVG (Top layer) */
    /* 2. Theme's global color gradient (Bottom layer) */
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>'),
        linear-gradient(99deg, var(--global-color-9), var(--global-color-8));
        
    /* Sizing and positioning for both layers */
    background-size: 14px, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

/* --- DARK / LIGHT --- */
.optiview-check-list.is-dark li {
    color: #ffffff;
}

.optiview-check-list.is-light li {
    color: #000000;
}