/* ===== GLOBAL ===== */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== MAIN CONTAINER ===== */
.article-container {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* ===== ARTICLE ===== */
.article-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: "Georgia", serif !important;
}

.article-content .subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== META INFO ===== */
.article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.article-meta span {
    margin-right: 5px;
}

/* ===== FEATURED IMAGE ===== */
.featured-image {
    text-align: center;
    margin-bottom: 20px;
}

.featured-image img {
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* ===== ARTICLE BODY ===== */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-body h2,
.article-body h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body img {
    max-width: 100%;
    border-radius: 4px;
    margin: 10px 0;
}

.article-author {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .article-container {
        padding: 10px;
    }

    .article-content h1 {
        font-size: 26px;
        font-family: "Georgia", serif !important;
    }

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

@media (max-width: 480px) {
    .article-content h1 {
        font-size: 22px;
        font-family: "Georgia", serif !important;
    }

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

    .article-meta {
        font-size: 12px;
    }
}


