/**
 * AI Overviews Optimization Styles
 * Optimized for Google AI Overviews ranking
 */

/* Quick Answer Section */
.quick-answer {
    width: 100%;
    padding: 30px 20px;
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    margin-bottom: 30px;
}

.quick-answer-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.quick-answer-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Key Takeaways */
.key-takeaways {
    width: 100%;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin: 30px 0;
}

.key-takeaways h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333333;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-takeaways li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
}

.key-takeaways li:last-child {
    border-bottom: none;
}

.key-takeaways li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0073aa;
    font-weight: bold;
    font-size: 18px;
}

/* Step-by-Step Guide */
.step-by-step {
    width: 100%;
    padding: 30px 20px;
    background: #ffffff;
    margin: 30px 0;
}

.step-by-step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333333;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    padding: 20px 0 20px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.step-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.step-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 20px;
    width: 35px;
    height: 35px;
    background: #0073aa;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* Content Section Optimizations */
.content-section {
    width: 100%;
    padding: 30px 20px;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.3;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #666666;
    max-width: none;
}

.content-section ul,
.content-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #666666;
}

/* Short Paragraphs (2-4 lines max) */
.content-section p {
    max-width: 100%;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .quick-answer {
        padding: 40px;
    }
    
    .key-takeaways {
        padding: 40px;
    }
    
    .step-by-step {
        padding: 40px;
    }
    
    .content-section {
        padding: 40px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .quick-answer {
        padding: 50px 60px;
    }
    
    .key-takeaways {
        padding: 50px 60px;
    }
    
    .step-by-step {
        padding: 50px 60px;
    }
    
    .content-section {
        padding: 50px 60px;
    }
}



