.elementor-648 .elementor-element.elementor-element-ea5b557{--display:flex;}/* Start custom CSS for html, class: .elementor-element-006bcae *//* Import Font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');

/* Pengaturan Dasar */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f7f9fc;
    color: #4A4A4A;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

/* Menyembunyikan elemen sitasi */
.citation {
    display: none;
}

/* Kontainer Utama Artikel */
.article-container {
    max-width: 850px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
}

/* Header Artikel */
.article-header {
    padding: 40px 40px 20px 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0 0 25px 0;
}

/* Style untuk Gambar Artikel */
.article-image {
    width: 45%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

/* Body Artikel */
.article-body {
    padding: 0 40px 40px 40px;
}

.article-body h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #34495e;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f7;
}

.article-body h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 30px;
}

.article-body p {
    font-size: 1.1em;
    margin-bottom: 1.2em;
}

/* Pengaturan Link */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Pengaturan List */
ul {
    padding-left: 25px;
}

ul li {
    margin-bottom: 10px;
}

/* Garis Pemisah */
hr {
    border: 0;
    height: 1px;
    background-color: #eef2f7;
    margin: 40px 0;
}

/* Bagian Sumber */
.source-section {
    margin-top: 50px;
    padding: 25px;
    background-color: #f7f9fc;
    border-radius: 8px;
    border-left: 5px solid #007BFF;
}

.source-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
}

.source-section a {
    word-break: break-all;
}

/* Pengaturan Responsif untuk Mobile */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .article-container {
        margin: 10px auto;
    }

    .article-header, .article-body {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 1.8em;
    }

    .article-image {
        max-width: 100%; /* Gambar memenuhi kontainer di mobile */
    }

    .article-body h2 {
        font-size: 1.5em;
    }

    .article-body h3 {
        font-size: 1.2em;
    }

    .article-body p {
        font-size: 1em;
    }
}/* End custom CSS */