.custom-list-item {
    display: flex;
    align-items: flex-start; /* Changed to start to handle multi-line descriptions better */
    margin-bottom: 1.25rem;
    color: #333;
    gap: 15px;
}

.custom-number-box {
    background-color: white;
    color: #d14124;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    margin-right: 0;
    font-family: 'Bayon';
    flex-shrink: 0;
    border-radius: 0;
    transform-origin: center center;
    transform: rotate(-8deg);
}

.custom-item-column h3 {
    margin: 0 0 0 0;
    font-size: 24px !important;
    font-weight: 600;
    line-height: 150%;
    font-family: 'Blauer Nue' !important;
    color: #5D5D5D !important;
}

.custom-item-column p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #6E6E6E;
    font-family: 'Aeonik';
}


.custom-list-item.no-title {
    align-items: center;
    margin: 0;
}

.custom-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.custom-list-item.has-title .custom-number-box {
    width: 55px;
    height: 55px;
    font-size: 30px;
}

.custom-list-item.has-title {
    margin-bottom: 20px;
}

.custom-number-box img {
    width: 20px !important;
    height: 20px !important;
    transition: 0.2s all;
}

.custom-list-item.no-title:hover .custom-number-box img {
    transform: scale(1.2);
}



.list-container-7fa431f, .list-container-7280769, .list-container-7f6b826 {
    gap: 0;
}


@media screen and (max-width:768px){
    .custom-item-column p{
        font-size: 14px;
        font-weight: 400;
    }
    
    .custom-number-box{
        width: 28px;
        height: 28px;
        font-size: 16px;
        font-weight: 500;
        
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: visible;
    }
    
    .custom-list-item.has-title .custom-number-box {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }
    
    .custom-list-item.has-title {
        margin-bottom: 10px;
    }
    
    .custom-item-column h3 {
        margin: 0 0 0 0;
        font-size: 18px !important;
        font-weight: 600;
        line-height: 150%;
    }
    
}