.elementor-1020 .elementor-element.elementor-element-d21c152{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9ed790b *//* Pengaturan dasar untuk area artikel */
.article-container {
    max-width: 800px;
    margin: 40px auto; /* Memberi jarak dari atas dan bawah */
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Judul Utama Artikel */
.article-container h1 {
    font-size: 2.25rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

/* Judul Sub-bagian (Kelebihan, Langkah-Langkah, dll.) */
.article-container h2 {
    font-size: 1.6rem;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

/* Judul di dalam setiap langkah (misal: "Siapkan Editor Teks") */
.article-container h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 10px;
}

.article-container p {
    margin-bottom: 15px;
}

/* Mengatur daftar langkah bernomor (<ol>) */
.article-container ol {
    list-style: none; /* Menghapus nomor default */
    counter-reset: steps-counter; /* Membuat counter baru */
    padding-left: 0;
}

.article-container ol > li {
    counter-increment: steps-counter; /* Menambah nilai counter untuk setiap li */
    margin-bottom: 35px;
    position: relative;
    padding-left: 50px; /* Memberi ruang untuk nomor kustom */
}

/* Membuat nomor langkah kustom yang lebih menarik */
.article-container ol > li::before {
    content: counter(steps-counter); /* Menampilkan nilai counter */
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mengatur daftar tidak bernomor (<ul>) di dalam artikel */
.article-container ul {
    list-style-type: '✅';
    padding-left: 25px;
}

.article-container ul li {
    padding-left: 10px;
    margin-bottom: 10px;
}

/* Gaya untuk tautan/link */
.article-container a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.article-container a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Gaya untuk blok kode (<pre>) */
.article-container pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 15px;
    border-left: 5px solid #3498db;
    margin-top: 15px;
    margin-bottom: 20px;
}/* End custom CSS */