/* Article Content Styles */
.article-content {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
}

.article-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    color: #FF6600;
    margin: 30px 0 15px 0;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
}

.article-content h3 {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #333;
    margin: 25px 0 12px 0;
    line-height: 1.3;
}

.article-content h4 {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    color: #333;
    margin: 20px 0 10px 0;
    line-height: 1.3;
}

/* Quote Block */
.article-content blockquote {
    background: #FFF9E6;
    border-left: 4px solid #FFD700;
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 20px;
    font-style: italic;
    color: #333;
    border-radius: 0 5px 5px 0;
}

.article-content blockquote p {
    margin-bottom: 0;
    font-size: 20px;
}

/* Info Box */
.article-content .info-box {
    background: #f9f9f9;
    border: 2px solid #FF6600;
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
}

.info-box h3 {
    font-family: 'Arial', sans-serif;
    color: #FF6600;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Lists */
.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.article-content ol li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Links */
.article-content a {
    color: #FF6600;
    text-decoration: none;
    transition: color 0.3s;
}

.article-content a:hover {
    color: #FF8C00;
    text-decoration: underline;
}

/* Strong and Bold Text */
.article-content strong,
.article-content b {
    color: #000;
    font-weight: bold;
}

/* Emphasis */
.article-content em,
.article-content i {
    font-style: italic;
    color: #555;
}

/* Images */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* Code Blocks */
.article-content pre {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.article-content code {
    background: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

/* Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
    word-wrap: break-word;
    table-layout: fixed;
}

.article-content th,
.article-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
}

.article-content th {
    background: #f5f5f5;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.article-content tr:hover {
    background: #f9f9f9;
}

/* Horizontal Rule */
.article-content hr {
    border: none;
    height: 2px;
    background: #e0e0e0;
    margin: 30px 0;
}

/* Responsive for content */
@media (max-width: 768px) {
    .article-content p {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-content h4 {
        font-size: 18px;
    }

    .article-content blockquote {
        font-size: 18px;
        padding: 15px 20px;
    }

    .article-content blockquote p {
        font-size: 18px;
    }

    .article-content ul li,
    .article-content ol li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .article-content p {
        font-size: 15px;
    }

    .article-content h2 {
        font-size: 22px;
    }

    .article-content h3 {
        font-size: 18px;
    }

    .article-content h4 {
        font-size: 16px;
    }

    .article-content blockquote {
        font-size: 16px;
        padding: 12px 15px;
    }

    .article-content blockquote p {
        font-size: 16px;
    }

    .article-content ul li,
    .article-content ol li {
        font-size: 15px;
    }

    .article-content pre {
        font-size: 13px;
        padding: 10px;
    }

    .article-content table {
        font-size: 14px;
    }

    .article-content th,
    .article-content td {
        padding: 8px;
    }
}