.breadcrumbs {
    text-align:left;
    color:#fff;
    font-size:14px;
    margin-bottom:5px;
}

.breadcrumbs a:link, a:visited {
    text-align:left;
    color:#60a5fa;
    font-size:14px;
    text-decoration: none;
}

.article-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #e5e7eb;
    max-width: 100%;
    padding: 2rem 1.5rem;
    margin: 0 auto;
    border-radius: 0;
	text-align:left;
}

/* Headings */
.article-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #ffffff;
    border-bottom: 1px solid #2d3a4e;
    padding-bottom: 0.5rem;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #f3f4f6;
    border-bottom: 1px solid #2d3a4e;
    padding-bottom: 0.4rem;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #f9fafb;
}

.article-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.article-content h5,
.article-content h6 {
    color: #d1d5db;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Paragraf */
.article-content p {
    margin-bottom: 1.25rem;
    margin-top: 0;
    color: #d1d5db;
}

/* Link */
.article-content a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid #3b4b66;
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: #93c5fd;
    border-bottom-color: #60a5fa;
}

/* Text formatting */
.article-content b,
.article-content strong {
    font-weight: 600;
    color: #f3f4f6;
}

.article-content i,
.article-content em {
    font-style: italic;
    color: #cbd5e1;
}

.article-content u {
    text-decoration: underline;
    text-decoration-color: #4b5563;
}

/* List */
.article-content ul, 
.article-content ol {
    margin: 0.75rem 0 1.25rem 1.75rem;
    padding-left: 0.25rem;
    color: #d1d5db;
}

.article-content li {
    margin-bottom: 0.375rem;
    line-height: 1.65;
}

.article-content ul ul,
.article-content ol ul,
.article-content ul ol,
.article-content ol ol {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Blockquote */
.article-content blockquote {
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid #3b82f6;
    background-color: #1a2538;
    color: #cbd5e6;
    font-style: normal;
    border-radius: 0 0.75rem 0.75rem 0;
}

.article-content blockquote p {
    margin-bottom: 0.5rem;
    color: #cbd5e6;
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Table */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    overflow-x: auto;
    display: block;
    background-color: #1a2538;
}

.article-content thead {
    background-color: #111b2a;
}

.article-content th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #f3f4f6;
    border: 1px solid #2d3a4e;
}

.article-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #2d3a4e;
    color: #cbd5e6;
}

.article-content tr:nth-child(even) {
    background-color: #162132;
}

.article-content tr:hover {
    background-color: #1f2c42;
}

/* Code (inline) */
.article-content code {
    font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
    font-size: 0.875em;
    background-color: #111b2a;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    color: #f87171;
}

/* Preformatted code block */
.article-content pre {
    background-color: #0f1724;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-size: 0.8125rem;
    line-height: 1.45;
    margin: 1.25rem 0;
    border: 1px solid #2d3a4e;
}

.article-content pre code {
    background-color: transparent;
    color: #e2e8f0;
    padding: 0;
    font-size: inherit;
}

/* Horizontal rule */
.article-content hr {
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, #2d3a4e, #4b5563, #2d3a4e);
}

/* Highlight / Marker */
.article-content mark {
    background-color: #4b3d2e;
    padding: 0 0.2rem;
    border-radius: 4px;
    color: #fde047;
}

/* Small text */
.article-content small {
    font-size: 0.8125rem;
    color: #9ca3af;
}

/* Abbr */
.article-content abbr {
    border-bottom: 1px dashed #6b7280;
    cursor: help;
}

/* Gambar */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.25rem 0;
    display: block;
    border: 1px solid #2d3a4e;
}

/* Caption */
.article-content figcaption {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .article-content {
        font-size: 15px;
        line-height: 1.65;
        padding: 1.25rem 1rem;
    }
    
    .article-content h1 {
        font-size: 1.65rem;
    }
    
    .article-content h2 {
        font-size: 1.35rem;
    }
    
    .article-content h3 {
        font-size: 1.15rem;
    }
    
    .article-content blockquote {
        padding: 0.5rem 1rem;
    }
    
    .article-content th,
    .article-content td {
        padding: 0.5rem 0.75rem;
    }
}