/* Common Blog Content Styles */

/* Article Header */
.article-header {
    padding: 15px 0 15px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.category-icon {
    font-size: 16px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Article Content */
.article-content {
    padding: 20px 0;
    background: white;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box h4 {
    color: #1a2942;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-box p {
    margin-bottom: 0;
    color: #374151;
}

/* Problem/Solution Boxes */
.problem-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.solution-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #f7fef7 100%);
    border-left: 4px solid #22c55e;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

/* Example Boxes */
.example-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e5e7eb;
}

.example-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    border-left: 3px solid #cbd5e1;
    margin-bottom: 15px;
}

.example-content.after {
    border-left-color: #22c55e;
}

.workflow-note {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #64748b;
}

/* Links */
.instaprompt-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.instaprompt-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1a2942;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a2942 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.125rem;
    }

    .article-container {
        padding: 0 15px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

} 