/* Lazy Read Content Animation Styles */

.content-toiuu {
    padding: 60px 0;
    background: #ffffff;
}

.content-toiuu.grayContent {
    background: #f8f9fa;
}

.lazyRead {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Content Items */
.noidung {
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.noidung:hover {
    transform: translateX(5px);
}

.noidung.active .content-detail-6 strong {
    color: #0066cc;
}

.content-detail-6 {
    position: relative;
    padding-left: 20px;
}

/* Progress Bar */
.content-detail-6 .inprocess {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(180deg, #0066cc 0%, #0052a3 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.noidung.active .content-detail-6 .inprocess {
    background: linear-gradient(180deg, #0066cc 0%, #0052a3 100%);
}

/* Content Title */
.content-detail-6 strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

/* Content List */
.content-detail-6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.content-detail-6 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #666666;
    font-size: 15px;
}

.content-detail-6 ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 16px;
}

.content-detail-6 ul li.onlymobi {
    padding-left: 0;
}

.content-detail-6 ul li.onlymobi:before {
    display: none;
}

/* Image Animation */
.img-toiuu {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.img-toiuu:hover {
    transform: scale(1.02);
}

/* Mobile Only/PC Only */
.onlymobi {
    display: none;
}

.onlypc {
    display: block;
}

@media (max-width: 768px) {
    .onlymobi {
        display: block;
    }
    
    .onlypc {
        display: none;
    }
    
    .lazyRead {
        flex-direction: column;
    }
    
    .content-toiuu {
        padding: 40px 0;
    }
    
    .content-detail-6 strong {
        font-size: 18px;
    }
    
    .content-detail-6 ul li {
        font-size: 14px;
    }
}

/* No Padding Utility */
.nopadding {
    padding: 0 !important;
}

/* Super Center */
.superCenter {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .superCenter {
        flex-direction: column;
    }
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.noidung.active {
    animation: slideInLeft 0.3s ease-out;
}

.img-toiuu.onlypc {
    animation: slideInRight 0.3s ease-out;
}

/* Hidden State */
.content-detail-6 ul[style*="display: none"] {
    display: none !important;
}

.content-detail-6 ul:not([style*="display: none"]) {
    display: block !important;
}
