/* BumiDaily (MY) - journal style (not "typical bootstrap") */
:root{
  --bg:#ecebe7;
  --paper:#fbfaf7;
  --text:#141414;
  --muted:#6a6a6a;
  --line:#d8d6d0;
  --accent:#0f3f78;
  --accent2:#1b7a84;
  --danger:#ef4444;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
}

a{color:inherit}

.container{
  width:min(1240px,94vw);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(251,250,247,.92);
  border-bottom:1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.brand-logo{
  height:34px;
  width:auto;
  display:block;
  object-fit:contain;
}
.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  border-radius:6px;
  border:1px solid transparent;
  color:var(--muted);
}
.nav a:hover{
  color:var(--text);
  border-color:var(--line);
  background:rgba(15,23,42,.04);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pill{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  background:#fff;
  color:var(--muted);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}
.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius:4px;
  padding:10px 14px;
  background:rgba(15,23,42,.04);
  color:var(--text);
  border:1px solid rgba(15,23,42,.10);
  font-weight:650;
  font-size:14px;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background:rgba(15,23,42,.08);
  border-color:rgba(15,23,42,.18);
}
.btn-accent{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border-color:transparent;
  color:#fff;
}
.btn-accent:hover{
  background:linear-gradient(135deg, #0b2f5a, #156068);
}
.btn-link{
  text-decoration:none;
  display:inline-block;
}

.hero{
  padding:26px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:10px;
  align-items:stretch;
}
.hero-card{
  border:1px solid var(--line);
  border-radius:0;
  background:var(--paper);
  overflow:hidden;
}
.hero-card-inner{
  padding:24px 26px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  font-size:12px;
  color:var(--muted);
}
.hero h1{
  margin:12px 0 10px;
  font-size:56px;
  line-height:1.05;
  letter-spacing:-.5px;
  font-family:Georgia,'Times New Roman',Times,serif;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  max-width:70ch;
  font-size:18px;
}
.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-side{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0;
  height:100%;
}
.mini-news{
  border:1px solid var(--line);
  border-radius:0;
  background:var(--paper);
  padding:14px 16px;
  height:100%;
  display:flex;
  flex-direction:column;
}
.mini-news h3{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--text);
}
.mini-news .row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-top:12px;
}
.mini-news img{
  width:68px;
  height:54px;
  border-radius:0;
  object-fit:cover;
}
.mini-news a{
  text-decoration:none;
}
.mini-news .t{
  font-size:13px;
  color:var(--muted);
}
.mini-news .t strong{
  display:block;
  color:var(--text);
  font-size:15px;
  margin-bottom:2px;
  font-family:Georgia,'Times New Roman',Times,serif;
}

.section{
  padding:10px 0 22px;
}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
  border-bottom:1px solid var(--line);
  padding-bottom:8px;
}
.section-title h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.2px;
  font-family:Georgia,'Times New Roman',Times,serif;
}
.section-title span{
  color:var(--muted);
  font-size:13px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.category-tile{
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:0;
  background:var(--paper);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:128px;
  position:relative;
  overflow:hidden;
}
.category-tile::after{
  display:none;
}
.category-tile .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.category-tile h3{
  margin:0;
  font-size:24px;
  font-family:Georgia,'Times New Roman',Times,serif;
}
.category-tile p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.category-tile .count{
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  color:var(--muted);
  background:rgba(15,23,42,.03);
  font-size:12px;
}
/* count hidden by request */
.category-tile .count{display:none}

.article-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.article-card{
  border:1px solid var(--line);
  border-radius:0;
  background:var(--paper);
  overflow:hidden;
  text-decoration:none;
  display:flex;
  flex-direction:row-reverse;
  align-items:stretch;
  min-height:280px;
  height:280px;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.article-card:hover{
  transform:none;
  border-color:#b9b6ad;
  background:#fff;
}
.article-card img{
  width:44%;
  height:auto;
  min-height:100%;
  object-fit:cover;
  background:rgba(15,23,42,.04);
  flex-shrink:0;
}
.article-card .body{
  padding:14px 16px 12px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
  justify-content:flex-start;
}
.meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.badge{
  border:1px solid var(--line);
  padding:5px 10px;
  border-radius:2px;
  background:rgba(15,23,42,.03);
}
.article-card h3{
  margin:0;
  font-size:28px;
  letter-spacing:-.2px;
  line-height:1.12;
  font-family:Georgia,'Times New Roman',Times,serif;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-card .footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid rgba(15,23,42,.08);
  padding-top:10px;
  margin-top:auto;
}

.search-strip{
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:0;
  background:var(--paper);
  padding:12px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.search-strip input{
  flex:1;
  min-width:220px;
  border-radius:2px;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.96);
  color:var(--text);
  outline:none;
}
.search-strip input::placeholder{color:rgba(15,23,42,.45)}

.result-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.result-item{
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:0;
  padding:12px 14px;
}
.result-item a{
  text-decoration:none;
  font-weight:750;
  letter-spacing:-.1px;
}
.result-item a strong{color:var(--accent)}
.result-desc{
  color:var(--muted);
  margin-top:6px;
  font-size:13px;
}

.pagination{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:center;
}
.pagination .page{
  color:var(--muted);
  font-weight:700;
}
.muted{color:var(--muted)}

.article-page{
  padding:8px 0 30px;
}
.article-shell{
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:0;
  overflow:hidden;
}
.article-hero{
  position:relative;
  display:grid;
  grid-template-columns:50% 50%;
  align-items:stretch;
  height:520px;
  min-height:520px;
}
.article-hero img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
  order:2;
}
.article-hero .overlay{
  display:none;
}
.article-hero .content{
  position:relative;
  order:1;
  padding:28px 24px;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:18px;
}
.article-hero .content .meta{margin-bottom:10px}
.article-hero .content h1{
  margin:0;
  font-size:58px;
  letter-spacing:-.3px;
  line-height:1.02;
  color:#111;
  font-family:Georgia,'Times New Roman',Times,serif;
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-body{
  padding:26px 30px 32px;
  background:#fff;
}
.lede{
  color:var(--muted);
  font-size:24px;
  margin:0 0 18px;
  max-width:74ch;
}
.ringkasan{
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,.96);
  margin:14px 0 18px;
}
.ringkasan h2{
  margin:0 0 10px;
  font-size:16px;
}
.ringkasan ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.progress-wrap{
  height:4px;
  background:rgba(15,23,42,.08);
}
.progress-bar{
  height:4px;
  width:0%;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
}

.article-body h2{
  font-size:36px;
  letter-spacing:-.2px;
  margin:24px 0 12px;
  line-height:1.1;
  font-family:Georgia,'Times New Roman',Times,serif;
}
.article-body h3{
  font-size:26px;
  margin:18px 0 8px;
  color:var(--text);
  font-family:Georgia,'Times New Roman',Times,serif;
}
.article-body p{
  color:rgba(15,23,42,.86);
  margin:10px 0;
  font-size:21px;
  max-width:72ch;
}
.article-body ul{
  color:rgba(15,23,42,.86);
  margin:10px 0;
  padding-left:22px;
  font-size:20px;
  max-width:72ch;
}
.quote{
  border-left:4px solid rgba(37,99,235,.60);
  padding:14px 16px;
  margin:18px 0;
  background:rgba(37,99,235,.06);
  border-radius:0;
  color:rgba(15,23,42,.92);
  font-size:20px;
  font-style:italic;
}

.figure{
  border:1px solid var(--line);
  background:rgba(255,255,255,.98);
  border-radius:0;
  overflow:hidden;
  margin:18px 0;
}
.figure img{width:100%; height:auto; display:block}
.figure .cap{
  padding:10px 12px;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid rgba(15,23,42,.07);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.table{
  width:100%;
  border-collapse:collapse;
  font-size:17px;
}
.table th,.table td{
  border:1px solid rgba(15,23,42,.12);
  padding:10px;
  vertical-align:top;
}
.table th{
  background:rgba(15,23,42,.04);
}

details{
  border:1px solid rgba(15,23,42,.14);
  border-radius:0;
  padding:12px 12px;
  background:rgba(255,255,255,.92);
  margin:10px 0;
}
details summary{
  cursor:pointer;
  font-weight:700;
  font-family:Georgia,'Times New Roman',Times,serif;
  font-size:22px;
}
details p{
  margin-top:10px;
  font-size:18px;
  color:#2f2f2f;
}

.sources{
  border-top:1px solid rgba(15,23,42,.12);
  margin-top:24px;
  padding-top:18px;
}
.sources ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.sources a{color:var(--accent)}

.article-cta-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:18px 0;
}
.cta-card{
  border:1px solid rgba(56,189,248,.25);
  background:linear-gradient(180deg, rgba(37,99,235,.10), rgba(255,255,255,.55));
  border-radius:0;
  padding:14px;
}
.cta-card h3{
  margin:0 0 8px;
  font-size:20px;
  color:var(--text);
  font-family:Georgia,'Times New Roman',Times,serif;
}
.cta-card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:16px;
}

.related-searches{
  margin:16px 0 18px;
  padding:14px;
  border:1px solid var(--line);
  background:#f4f7fb;
}
.related-searches .title{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2f3d56;
  font-weight:700;
}
.related-searches a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  background:#1f6b98;
  border:1px solid #1a5b81;
  padding:10px 12px;
  margin-bottom:8px;
  font-weight:600;
}
.related-searches a:last-child{margin-bottom:0}
.related-searches a::after{
  content:"→";
  font-size:16px;
  line-height:1;
}

.site-footer{
  border-top:1px solid var(--line);
  margin-top:26px;
  padding:26px 0 30px;
  background:rgba(255,255,255,.55);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-grid .links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-grid a{
  color:var(--muted);
  text-decoration:none;
  border:1px solid transparent;
  padding:7px 10px;
  border-radius:999px;
}
.footer-grid a:hover{
  border-color:var(--line);
  color:var(--text);
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:18px;
}
.modal-overlay.is-open{display:flex}
.modal{
  width:min(520px, 96vw);
  border-radius:0;
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.98);
  box-shadow:0 20px 60px rgba(15,23,42,.18);
  overflow:hidden;
}
.modal header{
  padding:14px 16px;
  border-bottom:1px solid rgba(15,23,42,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.modal header h2{
  margin:0;
  font-size:15px;
}
.modal header button{
  background:transparent;
  border:none;
  color:var(--muted);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.modal .content{
  padding:16px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}
.field label{
  color:var(--muted);
  font-size:13px;
}
.field input,.field textarea{
  border-radius:0;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.88);
  color:var(--text);
  outline:none;
}
.field textarea{min-height:120px; resize:vertical}
.modal .actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top:14px;
}
.error{
  color:rgba(251,113,133,1);
  font-size:13px;
  margin-top:6px;
  display:none;
}

.weather{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.weather .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}

.internal-search{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin:12px 0 18px;
}
.internal-search input{
  flex:1;
  min-width:240px;
  border-radius:0;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.95);
  color:var(--text);
  outline:none;
}
.internal-search .meta{
  color:var(--muted);
  font-size:13px;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .category-grid{grid-template-columns:1fr}
  .article-grid{grid-template-columns:1fr}
  .article-card{min-height:240px; height:auto; flex-direction:column}
  .article-card img{width:100%; height:130px}
  .article-card h3{font-size:24px}
  .article-card .footer{font-size:14px}
  .article-card h3{height:auto}
  .article-card p{height:auto}
  .article-hero{grid-template-columns:1fr; min-height:unset; height:auto}
  .article-hero img{order:1; min-height:260px; height:260px}
  .article-hero .content{order:2}
  .article-hero .content h1{font-size:40px}
  .article-body p,.article-body ul{font-size:18px}
  .article-body h2{font-size:30px}
  .lede{font-size:20px}
  .two-col{grid-template-columns:1fr}
  .article-cta-band{grid-template-columns:1fr}
  .hero h1{font-size:38px}
}

