/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    background-color: #f9fafb;
    color: #333;
}

/* Container umum */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

header h1 {
    font-size: 24px;
}

header nav {
    margin-top: 10px;
}

header nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

header nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 40px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.hero p {
    font-size: 16px;
    color: #555;
}

/* Artikel list */
section h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

article {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

article:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

article h3 {
    margin-bottom: 10px;
}

article h3 a {
    text-decoration: none;
    color: #111827;
}

article h3 a:hover {
    color: #2563eb;
}

article p {
    color: #555;
}

/* Footer */
footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 25px;
    }

    header nav a {
        display: block;
        margin-bottom: 10px;
    }
}

/* ===== FIX IMAGE CONTENT ===== */

article img,
.article-box img,
main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
}

article {
    overflow: hidden;
}