/* Article Hero */
.article-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    color: white;
    padding: 80px 20px 60px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.article-author {
    font-size: 14px;
    opacity: 0.8;
}

/* Article Layout */
.article-section {
    padding: 60px 20px;
    background: white;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.sidebar-cta h4 {
    margin-bottom: 10px;
    color: #2c5f2d;
}

.sidebar-cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-sidebar {
    display: block;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-sidebar:hover {
    background: #2c5f2d;
    transform: translateY(-2px);
}

.sidebar-share {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.sidebar-share h4 {
    margin-bottom: 15px;
    color: #2c5f2d;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: block;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

/* Article Content */
.article-main {
    max-width: 800px;
}

.article-content h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4caf50;
}

.article-content h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin: 30px 0 15px;
}

.article-content h4 {
    font-size: 20px;
    color: #333;
    margin: 25px 0 10px;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

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

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Info Boxes */
.info-box,
.warning-box,
.user-tip {
    padding: 20px 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-box.success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.warning-box.danger {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.user-tip {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.user-quote {
    background: #f5f5f5;
    border-left: 4px solid #999;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
}

.user-quote footer {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: normal;
}

/* Tables */
.data-table,
.comparison-table,
.app-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.data-table th,
.comparison-table th,
.app-table th {
    background: #2c5f2d;
    color: white;
    padding: 12px;
    text-align: left;
}

.data-table td,
.comparison-table td,
.app-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.data-table tr:hover,
.comparison-table tr:hover,
.app-table tr:hover {
    background: #f8f9fa;
}

/* Product Recommendations */
.product-recommendation {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #4caf50;
}

.product-recommendation h4 {
    color: #2c5f2d;
    margin-bottom: 10px;
}

.user-feedback {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

/* Checklists */
.checklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.checklist ul {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 8px 0;
}

/* FAQ Extended */
.faq-extended {
    margin: 30px 0;
}

.faq-extended-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #4caf50;
}

.faq-extended-item h4 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 50px 0;
    border: 2px solid #4caf50;
}

/* Article End CTA */
.article-end-cta {
    background: linear-gradient(135deg, #4caf50 0%, #2c5f2d 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0 40px;
}

.article-end-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.article-end-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: white;
    color: #2c5f2d;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #4caf50;
}

.table-of-contents h3 {
    margin-bottom: 20px;
    color: #2c5f2d;
}

.table-of-contents ol {
    padding-left: 25px;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 500;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 1024px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }

    .article-hero h1 {
        font-size: 32px;
    }
}