/* AI Summary Box Style */
.ai-summary {
    background: #0f1014;
    border: 1px solid #333;
    border-left: 4px solid #8B5CF6; /* YFO Brand Purple */
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.ai-summary::before {
    content: "✨ Key Takeaways"; /* Or "💡 AI Summary" */
    position: absolute;
    top: 0;
    right: 0;
    background: #8B5CF6;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 0 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-summary h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-summary ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

.ai-summary ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ai-summary {
        padding: 20px;
    }
}
