/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
}

/* HERO FULL WIDTH */
.hero-global {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.hero-global img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CONTAINER */
.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* HEADER */
.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 34px;
    line-height: 1.3;
    margin: 10px 0;
}

/* CATEGORY */
.category {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* META */
.meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

/* IMAGE ARTIKEL (400x400 CENTER) */
.article-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.article-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* DROP CAP (OPSIONAL BIAR KEREN) */
.article-content p:first-child::first-letter {
    font-size: 42px;
    font-weight: bold;
    float: left;
    margin-right: 8px;
    color: #ff6600;
}

/* RESPONSIVE */
@media(max-width:768px){

    .hero-global {
        height: 200px;
    }

    .article-header h1 {
        font-size: 26px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-image img {
        width: 100%;
        height: auto;
    }
}