/* Blog Article styles */

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 2rem 2rem;
    background: transparent;
    min-height: 100vh;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid #f2dba6;
    padding-bottom: 2rem;
}

.article-meta-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-category {
    background: #ecc979;
    color: #292823;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.article-date {
    color: #6b6b6b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-date::before {
    content: "📅";
}

.article-title {
    font-size: 2.5rem;
    color: #292823;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.article-subtitle {
    color: #45433b;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-author {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.author-info {
    text-align: center;
}

.author-name {
    font-weight: 700;
    color: #292823;
    font-size: 1.1rem;
}

.author-title {
    color: #6b6b6b;
    font-size: 0.9rem;
}

.article-featured-image {
    margin: 2rem -2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Article Content */
.article-content {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    margin-top: 3rem;
}

.article-body {
    min-width: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #292823;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecc979;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #292823;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: #292823;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid #ecc979;
    border-radius: 0 8px 8px 0;
}

.content-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.content-section li strong {
    color: #292823;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f2dba6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #45433b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Images */
.content-image {
    margin: 2.5rem 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.content-image.half img {
    max-width: none;
}

.content-image caption {
    display: block;
    margin-top: 0.8rem;
    color: #6b6b6b;
    font-size: 0.9rem;
    font-style: italic;
}

/* Scenario Cards */
.scenario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scenario-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f2dba6;
}

.scenario-card h3 {
    color: #292823;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.scenario-card p {
    color: #45433b;
    font-size: 0.95rem;
    margin: 0;
}

/* Professional Opinion */
.professional-opinion {
    background: linear-gradient(135deg, #f5e4bc 0%, #ecc979 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.opinion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.teacher-badge {
    background: #292823;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.teacher-quote {
    border-left: 4px solid #292823;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #292823;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros h3, .considerations h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #292823;
}

.pros ul, .considerations ul {
    padding-left: 1.5rem;
    margin: 0;
}

.pros li, .considerations li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #292823;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ecc979;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(15px);
}

.cta-card h2 {
    color: #292823;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #ecc979;
    color: #292823;
}

.cta-btn.secondary {
    background: #292823;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.store-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f2dba6;
    color: #45433b;
    font-size: 0.95rem;
}

/* Article Tags */
.article-tags {
    margin: 3rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f2dba6;
}

.article-tags h3 {
    color: #292823;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: #f5e4bc;
    color: #45433b;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background: #ecc979;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f2dba6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.sidebar-card h3 {
    color: #292823;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ecc979;
    padding-bottom: 0.5rem;
}

.author-profile {
    text-align: center;
}

.author-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.author-details h4 {
    color: #292823;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-details p {
    color: #45433b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.author-link {
    color: #ecc979;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f2dba6;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item h4 {
    font-size: 0.95rem;
    color: #292823;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.coming-soon-label {
    color: #6b6b6b;
    font-size: 0.8rem;
    font-style: italic;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-btn {
    padding: 0.8rem;
    background: #ecc979;
    color: #292823;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background: #d4b366;
}

/* Post Navigation */
.post-navigation {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    border-top: 1px solid #f2dba6;
    padding-top: 2rem;
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-item {
    text-align: center;
    opacity: 0.5;
}

.nav-item.disabled {
    pointer-events: none;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #45433b;
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 90px 1rem 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-featured-image {
        margin: 2rem -1rem;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .content-images-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-content {
        grid-template-columns: 1fr;
    }
}