
/* ── RESET & BASE ── */
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;background:#FDFAF6;color:#1a1a18;line-height:1.7;}
a{color:#1B3A2D;text-decoration:none;}
a:hover{text-decoration:underline;}

/* ── VARIABLES ── */
:root{
  --green:#1B3A2D;
  --gold:#C9A84C;
  --cream:#F5EDD6;
  --light:#FDFAF6;
  --border:#E8DFC8;
  --muted:#9C9C8C;
  --text:#3C3C34;
}

/* ── SIDEBAR NAV ── */
.site-wrap{display:flex;min-height:100vh;}

.sidebar{
  width:280px;
  flex-shrink:0;
  background:var(--green);
  padding:0;
  position:sticky;
  top:0;
  height:100vh;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(201,168,76,0.3) transparent;
}

.sidebar-logo{
  padding:24px 20px 16px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.sidebar-logo h1{
  font-family:'Lora',Georgia,serif;
  font-size:18px;font-weight:700;color:#F5EDD6;
}
.sidebar-logo h1 span{color:var(--gold);}
.sidebar-logo p{font-size:11px;color:#8FB5A0;margin-top:3px;}

/* .nav-section base padding moved to expand/collapse block */
.nav-section-label{
  font-size:10px;font-weight:700;text-transform:uppercase;
  letter-spacing:1px;color:rgba(201,168,76,0.85);
  padding:0 20px 6px;
}
.nav-item{
  display:block;padding:9px 20px;font-size:12px;
  color:rgba(245,237,214,0.75);cursor:pointer;
  border-left:3px solid transparent;
  transition:all .15s;
}
.nav-item:hover{background:rgba(255,255,255,0.05);color:#F5EDD6;border-left-color:rgba(201,168,76,0.4);}
.nav-item.active{background:rgba(201,168,76,0.12);color:var(--gold);border-left-color:var(--gold);font-weight:500;}
.nav-num{display:none;} /* numbers hidden */


/* ── NAV EXPAND/COLLAPSE ── */
.nav-toggle{
  cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  user-select:none;transition:color .15s;
  padding:6px 20px 6px;margin:0;
}
.nav-toggle:hover{color:var(--gold);}
.nav-arrow{
  font-size:9px;transition:transform .25s ease;
  color:rgba(201,168,76,0.5);flex-shrink:0;
  width:18px;height:18px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.05);border-radius:4px;
}
.nav-toggle:hover .nav-arrow{background:rgba(201,168,76,0.15);color:var(--gold);}
.nav-section.collapsed .nav-arrow{transform:rotate(-90deg);}
.nav-items{
  overflow:hidden;max-height:600px;
  transition:max-height .35s ease-in-out, opacity .25s ease;
  opacity:1;
}
.nav-section.collapsed .nav-items{max-height:0;opacity:0;}
.nav-section{padding:8px 0 2px;border-bottom:1px solid rgba(255,255,255,0.04);}
.nav-section:last-child{border-bottom:none;}

/* ── MAIN CONTENT ── */
.main{flex:1;min-width:0;padding:0;}

/* ── ARTICLE PANEL ── */
.article-panel{display:none;padding:0 0 60px;}
.article-panel.active{display:block;}

/* ── ARTICLE HEADER ── */
.art-header{
  background:var(--green);
  padding:32px 40px 28px;
  position:relative;overflow:hidden;
}
.art-header-pat{
  position:absolute;inset:0;
  opacity:0.05;
  background:repeating-linear-gradient(45deg,#C9A84C 0,#C9A84C 1px,transparent 0,transparent 18px);
  background-size:18px 18px;
}
.art-breadcrumb{font-size:11px;color:#8FB5A0;margin-bottom:10px;position:relative;z-index:2;}
.art-breadcrumb span{color:var(--gold);}
.art-cat-badge{
  display:inline-block;background:rgba(201,168,76,0.18);
  border:1px solid rgba(201,168,76,0.35);color:var(--gold);
  font-size:10px;font-weight:600;padding:3px 11px;border-radius:20px;
  text-transform:uppercase;letter-spacing:0.7px;margin-bottom:12px;
  position:relative;z-index:2;
}
.art-h1{
  font-family:'Lora',Georgia,serif;
  font-size:26px;font-weight:700;color:#F5EDD6;
  line-height:1.3;margin-bottom:14px;
  position:relative;z-index:2;
}
.art-meta-row{
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;
  position:relative;z-index:2;
}
.art-avatar{
  width:28px;height:28px;background:var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;color:var(--green);
}
.art-meta-txt{font-size:11px;color:#8FB5A0;}
.art-meta-txt strong{color:#F5EDD6;font-weight:500;}
.art-read-time{
  background:rgba(255,255,255,0.08);border-radius:20px;
  padding:3px 10px;font-size:10px;color:#8FB5A0;
}

/* ── SEO META BOX ── */
.seo-meta-box{
  display:none;
}
.seo-meta-title{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:0.6px;color:#085041;margin-bottom:10px;}
.seo-row{display:flex;gap:12px;margin-bottom:6px;align-items:flex-start;}
.seo-row:last-child{margin-bottom:0;}
.seo-key{font-size:11px;font-weight:600;color:#085041;min-width:90px;flex-shrink:0;padding-top:1px;}
.seo-val{font-size:11px;color:#0F6E56;line-height:1.55;}
code{font-family:monospace;font-size:10px;background:rgba(0,0,0,0.08);padding:1px 5px;border-radius:3px;color:#04342C;}

/* ── ARTICLE BODY ── */
.art-body{padding:0 40px;max-width:820px;}

.toc{
  background:#fff;border:1px solid var(--border);
  border-radius:12px;padding:16px 18px;margin:24px 0;
}
.toc-title{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.6px;color:var(--muted);margin-bottom:12px;}
.toc-list{list-style:none;display:flex;flex-direction:column;gap:0;}
.toc-list li{border-bottom:0.5px solid #F0EDE4;}
.toc-list li:last-child{border-bottom:none;}
.toc-list a{
  display:flex;align-items:center;gap:10px;padding:8px 0;
  font-size:12px;color:var(--text);text-decoration:none;
}
.toc-list a:hover{color:var(--green);}
.toc-n{
  width:20px;height:20px;background:var(--green);border-radius:5px;
  display:flex;align-items:center;justify-content:center;
  font-size:9px;font-weight:700;color:var(--gold);flex-shrink:0;
}

.art-lead{
  font-family:'Lora',Georgia,serif;font-style:italic;
  font-size:15px;color:#3C3C34;line-height:1.75;
  margin:24px 0;padding-bottom:20px;
  border-bottom:1px solid var(--border);
}

h2.art-h2{
  font-family:'Lora',Georgia,serif;font-size:20px;font-weight:700;
  color:var(--green);margin:32px 0 12px;
  padding-top:8px;
}
h3.art-h3{
  font-family:'Lora',Georgia,serif;font-size:16px;font-weight:600;
  color:var(--green);margin:20px 0 8px;
}
p.art-p{font-size:14px;color:#4C4C44;line-height:1.8;margin-bottom:14px;}

.tip-box{
  background:#F5EDD6;border-left:3px solid var(--gold);
  border-radius:0 10px 10px 0;padding:14px 18px;margin:18px 0;
}
.tip-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:0.6px;color:#854F0B;margin-bottom:5px;}
.tip-text{font-size:13px;color:#633806;line-height:1.65;}

.warn-box{
  background:#FCEBEB;border-left:3px solid #E24B4A;
  border-radius:0 10px 10px 0;padding:14px 18px;margin:18px 0;
}
.warn-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:0.6px;color:#A32D2D;margin-bottom:5px;}
.warn-text{font-size:13px;color:#791F1F;line-height:1.65;}

.info-box{
  background:#E6F1FB;border-left:3px solid #378ADD;
  border-radius:0 10px 10px 0;padding:14px 18px;margin:18px 0;
}
.info-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:0.6px;color:#0C447C;margin-bottom:5px;}
.info-text{font-size:13px;color:#185FA5;line-height:1.65;}

.step-list{margin:14px 0 20px;}
.step{display:flex;gap:14px;margin-bottom:16px;}
.step-num{
  width:28px;height:28px;background:var(--green);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;color:var(--gold);flex-shrink:0;margin-top:2px;
}
.step-body{flex:1;}
.step-title{font-size:14px;font-weight:600;color:#1a1a18;margin-bottom:3px;}
.step-desc{font-size:13px;color:#5C5C54;line-height:1.65;}

.check-list{list-style:none;margin:12px 0 18px;display:flex;flex-direction:column;gap:8px;}
.check-list li{
  display:flex;gap:10px;align-items:flex-start;
  font-size:13px;color:#4C4C44;line-height:1.6;
}
.check-list li::before{
  content:'';width:18px;height:18px;background:var(--green);border-radius:5px;
  flex-shrink:0;margin-top:2px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l4 4 6-6' stroke='%23C9A84C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.table-wrap{overflow-x:auto;margin:16px 0;}
table.art-table{width:100%;border-collapse:collapse;font-size:13px;}
table.art-table th{background:var(--green);color:var(--cream);padding:10px 14px;text-align:left;font-weight:500;font-size:12px;}
table.art-table td{padding:10px 14px;border-bottom:0.5px solid var(--border);color:#4C4C44;vertical-align:top;}
table.art-table tr:last-child td{border-bottom:none;}
table.art-table tr:nth-child(even) td{background:#F8F5EE;}
.td-bold{font-weight:600;color:#1a1a18;}

.faq-wrap{margin:20px 0;}
.faq-item{border:1px solid var(--border);border-radius:10px;margin-bottom:10px;background:#fff;overflow:hidden;}
.faq-q{
  padding:14px 16px;cursor:pointer;
  display:flex;gap:10px;align-items:flex-start;
}
.faq-q-icon{
  width:20px;height:20px;background:var(--green);border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;color:var(--gold);flex-shrink:0;margin-top:1px;
}
.faq-q-text{font-size:13px;font-weight:600;color:var(--green);line-height:1.4;flex:1;}
.faq-a{padding:0 16px 14px 46px;font-size:13px;color:#5C5C54;line-height:1.7;}

.affiliate-cta{
  background:var(--green);border-radius:14px;
  padding:24px 26px;margin:32px 0;
  display:flex;align-items:center;gap:20px;
}
.aff-text{flex:1;}
.aff-title{font-family:'Lora',Georgia,serif;font-size:16px;font-weight:700;color:#F5EDD6;margin-bottom:5px;}
.aff-sub{font-size:12px;color:#8FB5A0;line-height:1.5;}
.aff-btn{
  display:inline-block;background:var(--gold);color:var(--green);
  font-size:12px;font-weight:700;padding:11px 20px;border-radius:8px;
  white-space:nowrap;flex-shrink:0;text-decoration:none;
}

.related-articles{
  margin:32px 0 0;padding:20px;
  background:#fff;border:1px solid var(--border);border-radius:12px;
}
.related-title{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.6px;color:var(--muted);margin-bottom:14px;}
.related-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.related-item{
  padding:12px;background:#F8F5EE;border-radius:8px;
  font-size:12px;color:var(--green);cursor:pointer;
  border:1px solid var(--border);
}
.related-item:hover{background:var(--cream);border-color:var(--gold);}
.related-cat{font-size:10px;color:var(--muted);margin-bottom:3px;text-transform:uppercase;letter-spacing:0.4px;}
.related-ttl{font-weight:500;line-height:1.4;}

/* ── HAMBURGER BUTTON ── */
.hamburger-btn{
  display:none;
  position:fixed;top:12px;left:12px;z-index:1100;
  width:40px;height:40px;
  background:var(--green);border:2px solid rgba(201,168,76,0.4);
  border-radius:8px;cursor:pointer;
  align-items:center;justify-content:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.25);
  transition:transform .2s, background .2s;
}
.hamburger-btn:active{transform:scale(0.92);}
.hamburger-btn span{
  display:block;width:20px;height:2px;
  background:var(--gold);border-radius:2px;
  transition:transform .25s, opacity .2s;
  position:absolute;left:50%;margin-left:-10px;
}
.hamburger-btn span:nth-child(1){top:12px;}
.hamburger-btn span:nth-child(2){top:18px;}
.hamburger-btn span:nth-child(3){top:24px;}
/* X state */
.hamburger-btn.active span:nth-child(1){top:18px;transform:rotate(45deg);}
.hamburger-btn.active span:nth-child(2){opacity:0;}
.hamburger-btn.active span:nth-child(3){top:18px;transform:rotate(-45deg);}

/* ── SIDEBAR OVERLAY (mobile) ── */
.sidebar-overlay{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  opacity:0;transition:opacity .3s;
}
.sidebar-overlay.visible{opacity:1;}

/* ── RESPONSIVE — TABLET (≤1024px) ── */
@media(max-width:1024px){
  .sidebar{width:240px;}
  .main{max-width:100%;min-width:0;}
  .art-header{padding-left:30px;padding-right:30px;}
  .art-body{padding-left:30px;padding-right:30px;max-width:100%;}
}

/* ── RESPONSIVE — MOBILE (≤768px) ── */
@media(max-width:768px){
  /* Show hamburger */
  .hamburger-btn{display:flex;}

  /* Layout */
  .site-wrap{flex-direction:column;}

  /* Sidebar: off-canvas drawer */
  .sidebar{
    position:fixed;top:0;left:0;bottom:0;
    width:280px;max-width:82vw;height:100vh;
    z-index:1050;
    transform:translateX(-105%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow:none;
  }
  .sidebar.open{
    transform:translateX(0);
    box-shadow:4px 0 24px rgba(0,0,0,0.3);
  }
  .sidebar-logo{padding:64px 16px 16px 16px !important;text-align:center;}
  .sidebar-logo-wrap{padding:64px 16px 16px 16px !important;text-align:center;}
  .sidebar-logo-img{max-width:170px !important;margin:0 auto !important;}
  .sidebar-logo-tagline{text-align:center;}

  /* Main content */
  .main{max-width:100%;min-width:0;padding-top:62px;}
  .art-header{padding:24px 18px 20px;}
  .art-body{padding:0 18px;}
  .art-h1{font-size:19px;line-height:1.35;}
  .art-meta-row{gap:8px;}

  /* Tables scroll */
  .table-wrap{margin-left:-18px;margin-right:-18px;padding:0 18px;}
  table.art-table{min-width:520px;}
  table.art-table th,table.art-table td{padding:8px 10px;font-size:12px;}

  /* CTA & grid */
  .affiliate-cta{flex-direction:column;padding:20px 18px;gap:14px;}
  .related-grid{grid-template-columns:1fr;}

  /* Steps */
  .step{gap:10px;}
  .step-num{width:24px;height:24px;font-size:10px;}

  /* TOC */
  .toc{padding:14px 14px;margin:18px 0;}

  /* FAQ */
  .faq-a{padding-left:36px;}
}

/* ── RESPONSIVE — SMALL PHONE (≤480px) ── */
@media(max-width:480px){
  .art-header{padding:20px 14px 18px;}
  .art-body{padding:0 14px;}
  .art-h1{font-size:17px;}
  h2.art-h2{font-size:17px;}
  h3.art-h3{font-size:14px;}
  p.art-p{font-size:13px;}
  .art-lead{font-size:13.5px;}
  .tip-box,.warn-box,.info-box{padding:12px 14px;margin:14px 0;}
  .tip-text,.warn-text,.info-text{font-size:12px;}
  .affiliate-cta{padding:16px 14px;border-radius:10px;}
  .aff-title{font-size:14px;}
  .aff-sub{font-size:11px;}
  .aff-btn{padding:10px 16px;font-size:11px;width:100%;text-align:center;}
  .table-wrap{margin-left:-14px;margin-right:-14px;padding:0 14px;}
  .related-articles{padding:14px;margin-top:24px;}

  /* Sidebar adjustments */
  .sidebar{width:260px;}
  .nav-item{padding:10px 16px;font-size:11.5px;}
  .sidebar-logo{padding:12px 16px 10px !important;}
}

/* ══════════════════════════════════════════ */
/* ISLAMIC ORNAMENTS & DECORATIVE TOUCHES     */
/* ══════════════════════════════════════════ */

/* Geometric Islamic pattern overlay for article headers */
.art-header-pat{
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23C9A84C' stroke-width='0.8' opacity='0.55'><path d='M40 5 L55 20 L55 40 L40 55 L25 40 L25 20 Z'/><path d='M40 25 L48 33 L48 47 L40 55 L32 47 L32 33 Z'/><circle cx='40' cy='40' r='3'/><path d='M5 40 L20 25 M60 25 L75 40 M5 40 L20 55 M60 55 L75 40'/></g></svg>") repeat;
  background-size:80px 80px;
  opacity:0.08;
}

/* Decorative crescent-and-star divider for article lead */
.art-lead{position:relative;}
.art-lead::before{
  content:"";
  display:block;
  width:60px;height:18px;margin:0 auto 14px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 36'><g fill='none' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'><line x1='0' y1='18' x2='38' y2='18'/><line x1='82' y1='18' x2='120' y2='18'/><path d='M52 18 a8 8 0 1 0 12 0 a6 6 0 1 1 -12 0 Z' fill='%23C9A84C' stroke='none'/><path d='M68 14 l1.5 3 l3 0.5 l-2.2 2 l0.5 3 l-2.8 -1.5 l-2.8 1.5 l0.5 -3 l-2.2 -2 l3 -0.5 Z' fill='%23C9A84C' stroke='none'/></g></svg>") center/contain no-repeat;
}

/* Mosque silhouette accent in article header */
.art-header::after{
  content:"";
  position:absolute;
  right:20px;bottom:0;
  width:120px;height:46px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 90'><g fill='%23C9A84C' opacity='0.18'><path d='M120 5 a10 10 0 0 1 10 10 c0 5 -3 8 -5 10 l0 5 l-10 0 l0 -5 c-2 -2 -5 -5 -5 -10 a10 10 0 0 1 10 -10 Z'/><path d='M118 25 l4 0 l0 6 l-4 0 Z'/><path d='M80 50 a40 25 0 0 1 80 0 l0 40 l-80 0 Z'/><path d='M115 60 a5 10 0 0 1 10 0 l0 30 l-10 0 Z' fill='%23081628' opacity='0.4'/><circle cx='50' cy='55' r='4'/><circle cx='190' cy='55' r='4'/><path d='M40 60 a10 8 0 0 1 20 0 l0 30 l-20 0 Z'/><path d='M180 60 a10 8 0 0 1 20 0 l0 30 l-20 0 Z'/><path d='M48 50 l4 0 l0 5 l-4 0 Z'/><path d='M188 50 l4 0 l0 5 l-4 0 Z'/></g></svg>") right bottom/contain no-repeat;
  pointer-events:none;
  z-index:1;
}
@media(max-width:768px){
  .art-header::after{width:90px;height:34px;right:12px;}
}

/* Sidebar logo gold ornamental divider */
.sidebar-logo{
  position:relative;
}
.sidebar-logo::after{
  content:"";
  display:block;
  height:10px;
  margin-top:8px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'><g fill='none' stroke='%23C9A84C' stroke-width='1' opacity='0.5'><line x1='0' y1='5' x2='80' y2='5'/><line x1='120' y1='5' x2='200' y2='5'/><path d='M90 5 l5 -3 l5 3 l5 -3 l5 3' /></g></svg>") center/contain no-repeat;
}

/* ══════════════════════════════════════════ */
/* SHARE BUTTONS                              */
/* ══════════════════════════════════════════ */
.share-box{
  background:#fff;
  border:1px solid var(--border);
  border-left:3px solid var(--gold);
  border-radius:0 10px 10px 0;
  padding:16px 18px;
  margin:28px 0 20px;
}
.share-label{
  font-family:monospace;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.13em;
  color:var(--green);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.share-label::before{
  content:"";
  width:14px;height:14px;flex-shrink:0;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='18' cy='5' r='3'/><circle cx='6' cy='12' r='3'/><circle cx='18' cy='19' r='3'/><line x1='8.59' y1='13.51' x2='15.42' y2='17.49'/><line x1='15.41' y1='6.51' x2='8.59' y2='10.49'/></svg>") center/contain no-repeat;
}
.share-btns{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.share-btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 14px;
  background:#F8F5EE;
  border:1px solid var(--border);
  border-radius:8px;
  font-size:12px;
  font-weight:600;
  color:var(--green);
  cursor:pointer;
  transition:all .18s;
  font-family:'DM Sans',sans-serif;
  text-decoration:none;
}
.share-btn:hover{
  background:var(--green);
  color:var(--gold);
  border-color:var(--green);
  transform:translateY(-1px);
  text-decoration:none;
}
.share-btn svg{
  width:15px;height:15px;
  flex-shrink:0;
}
.share-btn:hover svg{fill:var(--gold);}
.share-btn svg{fill:var(--green);transition:fill .18s;}
.share-btn.copied{
  background:var(--gold);
  color:var(--green);
  border-color:var(--gold);
}
.share-btn.copied svg{fill:var(--green);}

@media(max-width:480px){
  .share-box{padding:14px;margin:22px 0 16px;}
  .share-btn{padding:8px 11px;font-size:11px;gap:5px;}
  .share-btn svg{width:13px;height:13px;}
}

/* ══════════════════════════════════════════ */
/* KALKULATOR BIAYA UMROH (SIMPLIFIED)        */
/* ══════════════════════════════════════════ */
.calc-wrapper{max-width:100%;margin:0 auto;font-family:'DM Sans',sans-serif;color:var(--text);}
.calc-wrapper *,.calc-wrapper *::before,.calc-wrapper *::after{box-sizing:border-box;}

/* Header */
.calc-header{text-align:center;margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid var(--border);}
.calc-eyebrow{font-family:monospace;font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:5px;display:block;font-weight:600;}
.calc-title{font-family:'Lora',Georgia,serif;font-size:22px;font-weight:700;color:var(--green);line-height:1.2;margin-bottom:6px;}
.calc-desc{font-size:12.5px;color:#5C5C54;line-height:1.6;max-width:520px;margin:0 auto;}
.calc-desc strong{color:var(--green);}

/* Grid: single column for simplicity */
.calc-grid{display:flex;flex-direction:column;gap:16px;}
.calc-left{display:none;} /* Hide sidebar on kalkulator — tips inline instead */

/* Widget cards */
.cw{background:#fff;border:1px solid var(--border);border-radius:10px;margin-bottom:10px;overflow:hidden;}
.cw:last-child{margin-bottom:0}
.cw-head{background:var(--green);padding:7px 14px;display:flex;align-items:center;justify-content:space-between;}
.cw-title{font-family:monospace;font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:700;}
.cw-hint{background:rgba(201,168,76,.18);border:1px solid rgba(201,168,76,.4);padding:2px 8px;border-radius:100px;}
.cw-hint span{font-family:monospace;font-size:8.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--gold);font-weight:600;}
.cw-body{padding:12px;}

/* Inputs */
.calc-wrapper .inp{
  background:#FDFAF6;border:1px solid var(--border);border-radius:6px;
  color:#1a1a18;font-family:'DM Sans',sans-serif;font-size:13px;
  padding:8px 10px;width:100%;outline:none;transition:border-color .15s;
}
.calc-wrapper .inp:focus{border-color:var(--gold);background:#fff;}
.calc-wrapper .sel{
  background:#FDFAF6;border:1px solid var(--border);border-radius:6px;
  color:var(--green);font-family:'DM Sans',sans-serif;font-size:12px;
  font-weight:600;padding:8px 24px 8px 8px;outline:none;width:100%;
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231B3A2D' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat:no-repeat;
  background-position:right 8px center;
  background-size:9px 5px;
  cursor:pointer;
}

/* Kurs */
.kurs-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:4px}
.kurs-box{background:#F8F5EE;border:1px solid var(--border);border-radius:8px;padding:10px 12px;display:flex;justify-content:space-between;align-items:center}
.kurs-lbl{font-family:monospace;font-size:9px;letter-spacing:.08em;text-transform:uppercase;color:#854F0B;font-weight:700}
.kurs-wrap{display:flex;align-items:center;gap:4px}
.kurs-in{background:transparent;border:none;border-bottom:1.5px solid var(--gold);color:var(--green);font-family:'Lora',Georgia,serif;font-size:15px;font-weight:700;width:75px;text-align:right;padding:2px;outline:none}
.kurs-unit{font-family:monospace;font-size:8.5px;color:var(--gold);font-weight:600}

/* Section heads */
.csh{font-family:monospace;font-size:9.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--green);margin-top:12px;margin-bottom:5px;padding-bottom:3px;border-bottom:1px solid var(--border);font-weight:700;}
.csh:first-child{margin-top:2px;}

/* Hotel top row */
.h-top{display:grid;grid-template-columns:1fr 50px 44px;gap:5px;margin-bottom:6px}
.h-nights{display:flex;align-items:center;gap:8px;margin-bottom:6px}
.h-nights label{font-family:monospace;font-size:9.5px;color:#5C5C54;letter-spacing:.05em;text-transform:uppercase;font-weight:600}

/* Room table */
.kt-wrap{overflow-x:auto;border-radius:8px;border:1px solid var(--border);-webkit-overflow-scrolling:touch;}
.kt{width:100%;border-collapse:collapse;min-width:380px}
.kt th{background:#F8F5EE;font-family:monospace;font-size:9px;letter-spacing:.08em;text-transform:uppercase;color:var(--green);padding:7px 6px;text-align:center;border-bottom:1px solid var(--border);white-space:nowrap;font-weight:700}
.kt th.kl{text-align:left;padding-left:8px}
.kt td{padding:6px;border-bottom:1px solid #F0EDE4;vertical-align:middle;text-align:center}
.kt tr:last-child td{border-bottom:none;}
.kt .inp{padding:6px;font-size:12px;text-align:center;}
.kt .sel{padding:5px 20px 5px 5px;font-size:11px;background-size:8px 5px;background-position:right 6px center;}
.k-chk{width:16px;height:16px;accent-color:var(--green);cursor:pointer;display:block;margin:auto}
.k-nm{font-size:12px;color:var(--green);font-weight:600;white-space:nowrap;text-align:left!important;padding-left:8px!important}
.k-occ{font-family:monospace;font-size:10px;color:var(--muted);font-weight:600}
.kt tr.k-off td{opacity:.25;pointer-events:none}
.kt tr.k-off td:nth-child(3){opacity:1;pointer-events:auto}

/* Cost rows — simplified for mobile */
.cg{display:grid;gap:6px;margin-bottom:6px}
.cr{display:grid;grid-template-columns:1.8fr 46px 44px 88px 52px;gap:4px;align-items:center}
.cr-l{font-size:11px;color:#4C4C44;line-height:1.25}

/* Params */
.pbar{display:flex;align-items:center;gap:8px;background:#F8F5EE;border:1px solid var(--border);border-radius:8px;padding:10px 12px;margin-bottom:6px}
.pbar label{font-size:12px;color:#4C4C44;flex:1;font-weight:500}
.pu{font-family:monospace;font-size:10px;color:var(--muted);font-weight:600}

/* Result table */
.rt-wrap{overflow-x:auto;border-radius:8px;border:1px solid var(--border);-webkit-overflow-scrolling:touch;}
.rt{width:100%;border-collapse:collapse;min-width:340px}
.rt th{background:var(--green);font-family:monospace;font-size:9.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);padding:9px 8px;text-align:right;white-space:nowrap;line-height:1.4;font-weight:700}
.rt th:first-child{text-align:left}
.rt td{padding:7px 8px;font-size:11.5px;border-bottom:1px solid #F0EDE4;color:#4C4C44;text-align:right}
.rt td:first-child{text-align:left;color:#3C3C34;font-weight:500}
.rt td.rv{font-family:'Lora',Georgia,serif;font-weight:700;font-size:13px;color:var(--green)}
.rt td.rz{color:var(--muted)!important;font-size:11px}
.rt tr.r-hpp td{background:#F5EDD6;border-top:2px solid var(--gold)}
.rt tr.r-hpp td:first-child{font-family:monospace;font-size:11px;font-weight:700;color:#633806;text-transform:uppercase;letter-spacing:.05em}
.rt tr.r-hpp td.rv{font-size:15px;color:#633806;}
.rt tr.r-note td{font-family:monospace;font-size:9px;color:var(--muted);padding:5px 8px;border:none;background:#F8F5EE;font-weight:600}

/* ── KALKULATOR RESPONSIVE ── */
@media(max-width:768px){
  .calc-title{font-size:18px;}
  .calc-desc{font-size:11.5px;}
  .cw-body{padding:10px;}
  .kurs-row{grid-template-columns:1fr;gap:6px;}
  .h-top{grid-template-columns:1fr 44px 40px;}
  .cr{grid-template-columns:1fr;gap:3px;}
  .cr-l{font-size:11px;margin-bottom:2px;color:var(--green);font-weight:500;}
  .cr .inp,.cr .sel{display:inline-block;}
  .cr{display:flex;flex-wrap:wrap;gap:4px;padding:8px 0;border-bottom:1px solid #F0EDE4;}
  .cr .inp{flex:1;min-width:60px;max-width:100px;}
  .cr .sel{flex:0 0 auto;width:auto;min-width:72px;max-width:90px;}
  .cr-l{flex:1 0 100%;margin-bottom:0;}
  .kt{min-width:340px}
  .kt .inp{font-size:12px;padding:6px 4px;}
  .rt{min-width:300px}
  .rt th{font-size:8.5px;padding:7px 6px;}
  .rt td{padding:6px;font-size:11px;}
  .rt td.rv{font-size:12px;}
  .rt tr.r-hpp td.rv{font-size:14px;}
  .pbar{flex-wrap:wrap;gap:6px;}
  .pbar label{font-size:11px;flex:1 0 100%;}
}
@media(max-width:480px){
  .calc-title{font-size:16px;}
  .kurs-box{padding:8px 10px;flex-wrap:wrap;gap:4px;}
  .kurs-lbl{font-size:8px;flex:1 0 100%;}
  .cw-head{padding:6px 10px;}
  .cw-body{padding:8px;}
  .h-top{grid-template-columns:1fr;}
  .kt .inp{font-size:11px;}
}

/* ══════════════════════════════════════════ */
/* HOMEPAGE CATEGORY CARDS                     */
/* ══════════════════════════════════════════ */
.home-hero{
  background:var(--green);padding:44px 40px 38px;text-align:center;
  position:relative;overflow:hidden;
}
.home-hero::before{
  content:"";position:absolute;inset:0;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23C9A84C' stroke-width='0.8' opacity='0.5'><path d='M40 5 L55 20 L55 40 L40 55 L25 40 L25 20 Z'/><circle cx='40' cy='40' r='3'/></g></svg>") repeat;
  opacity:0.1;
}
.home-hero>*{position:relative;z-index:2;}
.home-eyebrow{font-family:monospace;font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:10px;display:block;font-weight:700;}
.home-h1{font-family:'Lora',Georgia,serif;font-size:28px;font-weight:700;color:#F5EDD6;line-height:1.25;margin-bottom:12px;max-width:640px;margin-left:auto;margin-right:auto;}
.home-lead{font-size:13.5px;color:#8FB5A0;line-height:1.7;max-width:540px;margin:0 auto;}
.home-body{padding:28px 32px 50px;}

/* Card grid */
.hcard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.hcard{
  display:block;position:relative;padding:24px 22px 20px;
  background:#fff;border:1px solid var(--border);border-radius:12px;
  text-decoration:none;transition:all .2s;overflow:hidden;
}
.hcard:hover{
  transform:translateY(-3px);box-shadow:0 8px 28px rgba(27,58,45,.1);
  border-color:var(--gold);text-decoration:none;
}
.hcard-num{
  position:absolute;top:8px;left:14px;
  font-family:'Lora',Georgia,serif;font-size:48px;font-weight:700;
  color:rgba(27,58,45,.06);line-height:1;pointer-events:none;
}
.hcard-icon{font-size:1.6rem;margin-bottom:6px;}
.hcard-tag{
  display:inline-block;font-family:monospace;font-size:8.5px;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--green);background:rgba(201,168,76,.12);
  border:1px solid rgba(201,168,76,.3);border-radius:20px;
  padding:2px 10px;margin-bottom:10px;
}
.hcard-title{
  font-family:'Lora',Georgia,serif;font-size:17px;font-weight:700;
  color:var(--green);line-height:1.3;margin-bottom:8px;
}
.hcard-desc{font-size:12px;color:#5C5C54;line-height:1.6;margin-bottom:12px;}
.hcard-count{font-size:11px;color:var(--gold);font-weight:600;}
.hcard:hover .hcard-count{color:var(--green);}

/* ══════════════════════════════════════════ */
/* CATEGORY LISTING PAGE                       */
/* ══════════════════════════════════════════ */
.catlist{display:flex;flex-direction:column;gap:10px;}
.catlist-item{
  display:block;padding:18px 20px;background:#fff;
  border:1px solid var(--border);border-radius:10px;
  text-decoration:none;transition:all .15s;position:relative;
}
.catlist-item:hover{
  background:#F8F5EE;border-color:var(--gold);
  transform:translateX(4px);text-decoration:none;
}
.catlist-new{
  display:inline-block;font-family:monospace;font-size:8px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  background:var(--green);color:var(--gold);
  padding:2px 8px;border-radius:10px;margin-bottom:6px;
}
.catlist-new:empty{display:none;}
.catlist-title{
  font-family:'Lora',Georgia,serif;font-size:15px;font-weight:600;
  color:var(--green);line-height:1.35;margin-bottom:4px;
}
.catlist-link{font-size:11px;color:var(--gold);font-weight:600;}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .hcard-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
  .home-hero{padding:32px 18px 28px;}
  .home-h1{font-size:22px;}
  .home-lead{font-size:12.5px;}
  .home-body{padding:20px 16px 40px;}
  .hcard-grid{grid-template-columns:1fr 1fr;gap:10px;}
  .hcard{padding:16px 14px 14px;}
  .hcard-num{font-size:36px;}
  .hcard-title{font-size:14px;}
  .hcard-desc{font-size:11px;margin-bottom:8px;}
  .catlist-item{padding:14px 16px;}
  .catlist-title{font-size:14px;}
}
@media(max-width:480px){
  .hcard-grid{grid-template-columns:1fr;gap:10px;}
  .home-h1{font-size:19px;}
}

/* ── SITE FOOTER ── */
.site-footer{
  background:var(--green);padding:28px 40px 20px;
  border-top:1px solid rgba(201,168,76,0.15);
  width:100%;
}
.footer-inner{max-width:820px;margin:0 auto;}
.footer-links{display:flex;flex-wrap:wrap;gap:6px 18px;margin-bottom:10px;}
.footer-links a{font-size:11px;color:rgba(245,237,214,0.6);text-decoration:none;transition:color .15s;}
.footer-links a:hover{color:var(--gold);text-decoration:none;}
.footer-copy{font-size:10px;color:rgba(245,237,214,0.3);line-height:1.6;}
.footer-copy a{color:rgba(201,168,76,0.5);text-decoration:none;}
@media(max-width:768px){
  .site-footer{padding:20px 18px 16px;}
}

/* ── EXTRACTED INLINE STYLES (v15) ── */

/* Sidebar logo wrapper */
.sidebar-logo-wrap{padding:14px 14px 10px;}
.sidebar-logo-link{display:block;text-decoration:none;}
.sidebar-logo-img{width:100%;max-width:200px;height:auto;display:block;}
.sidebar-logo-tagline{margin-top:6px;}

/* Hero logo (homepage) */
.hero-logo-wrap{margin-bottom:16px;}
.hero-logo-img{width:100%;max-width:280px;height:auto;display:block;margin:0 auto;}

/* Footer */
.footer-logo-wrap{margin-bottom:14px;}
.footer-logo-link{display:inline-block;text-decoration:none;}
.footer-logo-img{width:140px;height:auto;display:block;opacity:0.7;}

/* Article-specific common patterns */
.related-item{text-decoration:none;color:inherit;display:block;}
.flex-row-start{display:flex;align-items:flex-start;gap:10px;}
.flex-col-gap{display:flex;flex-direction:column;gap:8px;flex-shrink:0;}
.flex-col-gap-text{display:flex;flex-direction:column;gap:10px;margin-top:6px;}

/* Article images */
.art-img-full{width:100%;height:auto;display:block;}

/* Spacer utilities */
.mb-14{margin-bottom:14px;}
.mb-16{margin-bottom:16px;}
.mt-6{margin-top:6px;}
.my-16{margin:16px 0;}

/* ── A11Y: Skip-to-content link ── */
.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--gold);color:var(--green);
  padding:10px 18px;font-weight:700;text-decoration:none;
  z-index:10000;
  border-radius:0 0 6px 0;
}
.skip-link:focus{
  left:0;outline:3px solid var(--green);
}

/* ── A11Y: Inline content links underline (Lighthouse fix) ── */
.art-content a:not(.share-btn):not(.affiliate-btn):not(.related-item):not(.cta-btn),
.art-body a:not(.share-btn):not(.affiliate-btn):not(.related-item):not(.cta-btn),
article p a, article li a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(201,168,76,0.5);
}
article p a:hover, article li a:hover {
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

/* ── FEATURED NAV SECTION (Tools Gratis) ── */
.nav-section-featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  margin: 12px 12px 8px;
  padding: 4px 0 2px !important;
}
.nav-section-featured .nav-section-label {
  color: var(--gold) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.nav-item-featured {
  color: #F5EDD6 !important;
  font-weight: 600 !important;
  background: rgba(201,168,76,0.08);
  margin: 4px 8px;
  border-radius: 6px;
  border-left: 3px solid var(--gold) !important;
}
.nav-item-featured:hover {
  background: rgba(201,168,76,0.18) !important;
  color: var(--gold) !important;
}
.nav-item-featured.active {
  background: rgba(201,168,76,0.2) !important;
  color: var(--gold) !important;
}

/* ── CALCULATOR BANNER & RESET BUTTON (v18) ── */
.calc-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 18px;
}
.calc-banner-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.calc-banner-text {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.calc-banner-text strong {
  color: var(--green);
  font-weight: 700;
}
.calc-reset-btn {
  flex-shrink: 0;
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.calc-reset-btn:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--green);
}
.calc-reset-btn:active {
  transform: scale(0.97);
}
@media (max-width: 640px) {
  .calc-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    padding: 12px;
  }
  .calc-banner-icon {
    font-size: 20px;
  }
  .calc-banner-text {
    font-size: 12px;
  }
  .calc-reset-btn {
    width: 100%;
    padding: 10px;
  }
}

/* ── CALCULATOR RESET MODAL (v19) ── */
.calc-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.calc-modal.is-open {
  display: flex;
  animation: modalFadeIn 0.22s ease-out;
}
.calc-modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 58, 45, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.calc-modal-box {
  position: relative;
  background: #FDFAF6;
  border: 2px solid var(--gold);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 28px 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.2);
  animation: modalSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  border-radius: 14px 14px 0 0;
}
.calc-modal-icon {
  font-size: 42px;
  margin-bottom: 8px;
  display: inline-block;
  animation: iconSpin 0.5s ease-out;
}
.calc-modal-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 10px;
  line-height: 1.3;
}
.calc-modal-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 22px;
}
.calc-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.calc-modal-btn {
  flex: 1;
  max-width: 170px;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid;
}
.calc-modal-btn-cancel {
  background: transparent;
  color: var(--green);
  border-color: var(--border);
}
.calc-modal-btn-cancel:hover {
  background: #F5EDD6;
  border-color: var(--green);
}
.calc-modal-btn-confirm {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.calc-modal-btn-confirm:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.calc-modal-btn:active {
  transform: scale(0.97);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes iconSpin {
  from { transform: rotate(-180deg) scale(0.5); opacity: 0; }
  to { transform: rotate(0) scale(1); opacity: 1; }
}
@media (max-width: 480px) {
  .calc-modal-box {
    padding: 24px 20px 20px;
    border-radius: 14px;
  }
  .calc-modal-title {
    font-size: 19px;
  }
  .calc-modal-desc {
    font-size: 13px;
  }
  .calc-modal-icon {
    font-size: 36px;
  }
  .calc-modal-actions {
    flex-direction: column;
  }
  .calc-modal-btn {
    max-width: 100%;
    padding: 12px;
  }
}

/* ── BACA JUGA BOX (v20) — contextual internal link callout ── */
.baca-juga-box {
  background: #F8F5EE;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0;
}
.baca-juga-label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #854F0B;
  font-weight: 700;
  margin-bottom: 8px;
}
.baca-juga-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.baca-juga-list li {
  padding: 4px 0;
  font-size: 13.5px;
  line-height: 1.5;
}
.baca-juga-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}
.baca-juga-list a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.5);
  text-underline-offset: 2px;
  font-weight: 500;
}
.baca-juga-list a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ── FAQ SECTION WRAPPER (v20) ── */
.art-faq-section {
  margin: 32px 0 20px;
  padding: 0;
}
.art-faq-section > h2 {
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .baca-juga-box {
    padding: 12px 14px;
    margin: 16px 0;
  }
  .baca-juga-list li {
    font-size: 13px;
  }
}
