@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap');
body{background:#fbfbf9; line-height: 1.6;font-family: "Zalando Sans", sans-serif;}
.bento{display:grid;grid-template-columns:repeat(12,1fr);gap:14px;margin-top:24px}
.bento-card{border:1px solid #e8e6e1;border-radius:20px;padding:22px;background:#fff;transition:0.25s}
.bento-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,0.06)}
.span-8{grid-column:span 8}.span-3{grid-column:span 3}.span-4{grid-column:span 4}.span-6{grid-column:span 6}.span-12{grid-column:span 12}
.navbar{position:sticky;top:0;z-index:10;background:rgba(251,251,249,0.9);
backdrop-filter:blur(12px);border-bottom:1px solid #e8e6e1}
a , .text-dark ,.page-link {color: #111 !important; text-decoration:none;}
.hero-title {font-size:clamp(36px,6vw,64px);font-weight:800;letter-spacing:-2px;line-height:0.9:}
.bg-dark {background:#111;color:#fff;}
.bento-title {font-size:32px;font-weight:800;}
.img-cover {width:100%; height: 360px; object-fit:cover;border-radius:20px;}
.metadate{font-size:11px;opacity:0.5;}
.article-title{font-size:32px;font-weight:800;}
.text-white {color: #fbfbf9 !important;}
h3,h4,h5,p {margin-bottom: 8px;}
h1,h2,h3,h4,h5 {font-weight: bolder;}
.trans{background-color: inherit;}
.img-post {width:100%; height: 260px; object-fit:cover;border-radius:20px;}
.page-link,.page-link a {
  background: #e9eaeb !important;
  color: #111 !important;
}
.page-link:hover {
  background: #c6c8cb !important;
  color: #111 !important;
}
.page-item.active .page-link {
  background: #1c1d1e !important;
  color: #fbfbf9 !important;
}
.page-item.active .page-link.text-white {
  background: #545b62 !important;
}
.content {
    overflow: visible !important;
}

.content ul, .content ol {
    list-style: none !important;
    margin: 16px 0 !important;
    padding: 0 !important;
}

.content li {
    position: relative !important;
    padding-left: 28px !important;
    margin-bottom: 5px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

.content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

.content ol {
    counter-reset: my-counter;
}

.content ol li {
    counter-increment: my-counter;
}

.content ol li::before {
    content: counter(my-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.content table {
    width: 100%!important;
    border-collapse: collapse!important;
    margin: 20px 0!important;
}
.content th,.content td {
    border: 1px solid #ddd!important;
    padding: 10px 14px!important;
    text-align: left!important;
}
.content th {
    background: #f5f5f5!important;
    font-weight: bold!important;
}
.content .table-responsive {
    overflow-x: auto!important;
    border-radius: 14px;
    border: 1px solid #e8e6e1;
}

/* === PRE CODE BENTO STYLE - FIX KACAU === */
.content pre {
    background: #111 !important;
    color: #fbfbf9 !important;
    padding: 20px !important;
    border-radius: 16px !important;
    overflow-x: auto !important;
    margin: 20px 0 !important;
    border: 1px solid #222 !important;
    font-family: "JetBrains Mono", monospace !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    white-space: pre !important;
    display: block !important;
    max-width: 100% !important;
}

.content pre code {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    display: block !important;
    white-space: pre !important;
    border: none !important;
}

/* inline code `xxx` */
.content p code, .content li code, .content td code {
    background: #efede8 !important;
    color: #111 !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    font-family: "JetBrains Mono", monospace !important;
    font-size: 13px !important;
    border: 1px solid #e8e6e1 !important;
}

.content blockquote {
    border-left: 3px solid #111 !important;
    padding: 10px 18px !important;
    background: #fff !important;
    border-radius: 0 12px 12px 0 !important;
    margin: 20px 0 !important;
    font-style: italic !important;
}

.content hr {
    border: none !important;
    border-top: 1px solid #e8e6e1 !important;
    margin: 28px 0 !important;
}

@media(max-width:800px){
.span-8,.span-3,.span-4,.span-6{grid-column:span 12}
.img-cover {width:100%; height: 220px; object-fit:cover;border-radius:20px;}
.img-post {width:100%; height: 120px; object-fit:cover;border-radius:20px;}
.content pre {font-size: 12px !important; padding: 14px !important; border-radius: 12px !important;}
}