.fancy-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0; /* matches typical paragraph spacing */
}

.fancy-list li {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    
    color: #daffee;
    font-size: 1.6rem;
    line-height: 1.2;
}

.fancy-list li::before {
    content: "\2B22";
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 12px;
    flex-shrink: 0;

    color: #00ffb7;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    
    /* nudge if it looks too high/low compared to p{font} */
    margin-top: 0rem; 
}

.fancy-list li:hover {
    color: #fff;
}

.fancy-list li:hover::before {
    color: #ff1616;
    text-shadow: 0 0 8px #ff1616;
    transform: scale(1.3);
}
