/*-----------------------------------------------------------------------------------
    Blog Detail UL List Custom Styles
    Matches Elehaus template design system
-----------------------------------------------------------------------------------*/

/* Blog Detail List Styling */
.blog-detail ul {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
}

.blog-detail ul li {
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    list-style: none;
}

.blog-detail ul li:last-child {
    margin-bottom: 0;
}

/* Custom bullet point with primary color accent */
.blog-detail ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: #e73c17;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Alternative style with checkmark icon */
.blog-detail ul.list-checkmark li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #e73c17;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

/* Alternative style with arrow icon */
.blog-detail ul.list-arrow li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    top: 2px;
    background-color: transparent;
    border-radius: 0;
    color: #e73c17;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Hover effect */
.blog-detail ul li:hover::before {
    background-color: #c73414;
    transform: scale(1.2);
}

.blog-detail ul.list-arrow li:hover::before {
    background-color: transparent;
    transform: translateX(3px);
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .blog-detail ul li {
        font-size: 15px;
        padding-left: 28px;
        margin-bottom: 14px;
    }
    
    .blog-detail ul li::before {
        top: 10px;
    }
}

/* Boxed style variation */
.blog-detail ul.list-boxed {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 32px;
    margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
    .blog-detail ul.list-boxed {
        padding: 20px 24px;
    }
}

/* Numbered list styling */
.blog-detail ol {
    margin: 0 0 32px 0;
    padding: 0;
    counter-reset: list-counter;
    list-style: none;
}

.blog-detail ol li {
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
    counter-increment: list-counter;
}

.blog-detail ol li:last-child {
    margin-bottom: 0;
}

.blog-detail ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #e73c17;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
}

.blog-detail ol li:hover::before {
    background-color: #c73414;
    transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
    .blog-detail ol li {
        font-size: 15px;
        padding-left: 36px;
        margin-bottom: 14px;
    }
    
    .blog-detail ol li::before {
        width: 24px;
        height: 24px;
        font-size: 13px;
        line-height: 24px;
    }
}
