/* ===== Clean Hero ===== */
.artikel-hero-clean {
    background: #1a0f00;
    padding: 80px 0 40px; /* 80px = navbar height offset */
    text-align: center;
}

.artikel-hero-img {
    display: block;
    margin: 24px auto 0;
    width: 480px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.artikel-title-below {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 12px 0 10px;
    text-align: center;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #C9A84C;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

/* ===== Table of Contents ===== */
.toc {
    background: #111;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-left: 3px solid #C9A84C;
    padding: 24px 28px;
    margin-bottom: 48px;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 14px;
}

.toc ol {
    padding-left: 20px;
    margin: 0;
}

.toc li {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.toc a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.toc a:hover {
    color: #C9A84C;
}

/* ===== Article Content Overrides ===== */
.artikel-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.artikel-content h2 {
    color: #C9A84C;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.artikel-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.artikel-content a {
    color: #C9A84C;
    text-decoration: underline;
    text-decoration-color: rgba(201, 168, 76, 0.4);
    transition: text-decoration-color 0.2s;
}

.artikel-content a:hover {
    text-decoration-color: #C9A84C;
}

/* ===== Table ===== */
.artikel-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
}

.artikel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.artikel-table th {
    background: rgba(201, 168, 76, 0.12);
    color: #C9A84C;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 14px 16px;
    text-align: left;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.artikel-table td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    vertical-align: top;
}

.artikel-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== Article CTA Box ===== */
.artikel-cta {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 40px;
    margin: 60px 0 40px;
    text-align: center;
}

.artikel-cta h2 {
    color: #ffffff !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 16px;
}

.artikel-cta p {
    margin-bottom: 12px;
}

.btn-cta-artikel {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 40px;
    background: #25D366;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-cta-artikel:hover {
    background: #1fba58;
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

.btn-shopee {
    background: #FF6000;
    border-radius: 4px;
    letter-spacing: 1px;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
}

.btn-shopee:hover {
    background: #e55500;
}

.cta-subtext {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .toc {
        padding: 18px 20px;
    }

    .artikel-cta {
        padding: 28px 20px;
    }

    .btn-cta-artikel {
        width: 100%;
        text-align: center;
    }
}
