.ai-news-summary-box {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.ai-news-summary-header {
    color: #D32F2F; /* Red color */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

/* Red line after header */
.ai-news-summary-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 200px; /* Length of the line, adjust as needed or use flex to fill */
    height: 4px;
    background-color: #D32F2F;
    transform: translateY(-50%);
}

/* Make line responsive - simply hide on very small screens if needed, or adjust width */
@media (max-width: 600px) {
    .ai-news-summary-header::after {
        width: 50px;
    }
}

.ai-news-summary-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.ai-news-summary-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.ai-news-summary-content li::before {
    content: '•';
    color: #ddd; /* Light gray bullet */
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.ai-news-disclaimer {
    background-color: #E8ECEF; /* Light gray background */
    color: #555;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
}
