.custom-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    counter-increment: item;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #475569;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

.custom-list li::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    border-radius: 2px;
    background-color: rgba(37, 99, 235, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}
