.layout-main {
    justify-content: flex-start;
}
/* =====================
   Article Header
   ===================== */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.article-meta-item i {
    font-size: 16px;
    color: #0D9C4A;
}

.article-category-badge {
    display: inline-block;
    background: #0D9C4A;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-decoration: none;
}

.article-category-badge:hover {
    color: white;
}

/* =====================
   Featured Image
   ===================== */
.article-featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

/* =====================
   Article Body
   ===================== */
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    word-wrap: break-word;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0D9C4A;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-top: 30px;
    margin-bottom: 16px;
}

.article-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: #212529;
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #212529;
    margin-top: 20px;
    margin-bottom: 12px;
}

.article-content h6 {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    margin-top: 18px;
    margin-bottom: 10px;
}

.article-content ul,
.article-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    display: block;
}

.article-content blockquote {
    border-left: 4px solid #0D9C4A;
    padding: 10px 20px;
    margin: 24px 0;
    background: #f8f9fa;
    border-radius: 4px;
    font-style: italic;
    color: #6c757d;
}

.article-content a {
    color: #0D9C4A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: #0a7a39;
    text-decoration: underline;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.article-content table th {
    background: #0D9C4A;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.article-content table td {
    border: 1px solid #e9ecef;
    padding: 12px;
}

.article-content table tr:nth-child(even) {
    background: #f8f9fa;
}

.article-content pre {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 16px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 14px;
}

.article-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* =====================
   Article Footer & Sharing
   ===================== */
.article-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.article-sharing {
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-sharing-label {
    font-weight: 600;
    color: #212529;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
}

.share-btn:hover {
    background: #0D9C4A;
    color: white;
    border-color: #0D9C4A;
    transform: translateY(-2px);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 768px) {
    .article-title {
        font-size: 30px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .article-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-featured-image {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .article-header {
        margin-bottom: 24px;
    }

    .article-featured-image {
        max-height: 200px;
        border-radius: 8px;
        margin-bottom: 24px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 18px;
    }
}
