/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* BODY */
body {
    background: white;
    color: #2c2c2c;
    line-height: 1.75;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.container-artikel {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 25px;
    color: #7a7a7a;
}
.breadcrumb a {
    text-decoration: none;
    color: #1e3a5f;
    transition: 0.3s;
}
.breadcrumb a:hover {
    color: #3b82f6;
}
.breadcrumb span {
    color: #7a7a7a;
}
.breadcrumb span::before {
    content: "›";
    margin: 0 8px;
    color: #bbb;
}

/* ARTIKEL IMAGE */
.artikel-image {
    margin: 30px 0;
    text-align: center;
}
.artikel-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.artikel-image img:hover {
    transform: scale(1.02);
}

/* JUDUL */
.artikel-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
}

/* TANGGAL */
.artikel-date {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* CONTENT */
.artikel-content {
    font-size: 18px;
    color: #333;
    line-height: 1.9;
    margin-bottom: 65px;
}
.artikel-content h2 {
    font-size: 28px;
    margin: 25px 0 15px;
    color: #1e3a5f;
}
.artikel-content h3 {
    font-size: 22px;
    margin: 20px 0 12px;
    color: #1e3a5f;
}
.artikel-content p {
    margin-bottom: -10px;
}
.artikel-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* TAGS */
.artikel-tags {
    margin-top: 30px;
}
.artikel-tags strong {
    color: #1e3a5f;
    margin-right: 10px;
    font-weight: 600;
}
.artikel-tags .tag-badge {
    display: inline-block;
    background: #e0f0ff;
    color: #1e3a5f;
    padding: 6px 14px;
    margin: 5px 6px 0 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}
.artikel-tags .tag-badge:hover {
    background: #1e3a5f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .container {
        padding: 25px;
    }
    .artikel-title {
        font-size: 28px;
    }
    .artikel-content {
        font-size: 16px;
    }
    .artikel-content h2 {
        font-size: 24px;
    }
    .artikel-content h3 {
        font-size: 20px;
    }
}
