/* ===============================
   GPBox - Mobile App Style Layout
   =============================== */

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
    padding-bottom: 70px; /* bisa sesuaikan 70–90px tergantung tinggi nav */

}

:root {
  --primary: #2563eb;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
}
/* 
body.dark {
  --bg: #111827;
  --card-bg: #1f2937;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --border: #374151;
}*/

/* === Dark Mode ===
body.dark-mode {
  background: #111;
  color: #eee;
}

body.dark-mode .gpbox-header {
  background: #1a1a1a;
  box-shadow: 0 1px 3px rgba(255,255,255,0.05);
}

body.dark-mode .logo {
  color: #3b82f6;
}

body.dark-mode .menu-btn,
body.dark-mode .dark-toggle {
  color: #eee;
}
*/

button.menu-btn{
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  transition: opacity .2s;
}

.site-content {
  padding: 0;
  margin: 0;
  display: block !important;
}

.site-content .content-area {
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-content .is-right-sidebar{
  width: 100%;
}

/* App Container */
.gpbox-app {
    width: 100%;
  max-width: 480px;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin: 0 auto;
}

/* Header */
/* === Header Style === */
.gpbox-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.gpbox-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  max-width: 800px;
  margin: 0 auto;
}

.gpbox-header .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.5px;
}

/* Logo di header */
.gpbox-header .custom-logo {
  max-height: 40px;
  width: auto;
  height: auto;
}

.gpbox-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gpbox-site-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color, #222);
}

/* Header logo image */
.gpbox-header .custom-logo {
  max-height: 40px;
  width: auto;
  height: auto;
}

/* Header teks logo fallback */
.gpbox-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Teks fallback, akan override oleh inline style dari Customizer */
.gpbox-site-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color, #222);
  transition: color 0.3s ease;
}

/* Tambahan agar logo + tombol menu sejajar */
.gpbox-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/*.menu-btn,
.dark-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #111;
  transition: opacity .2s;
}

.menu-btn:hover,
.dark-toggle:hover {
  opacity: 0.6;
}*/


/* === Sidebar Offcanvas === */
.gpbox-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  z-index: 1001;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.gpbox-sidebar.active {
  left: 0;
}

.gpbox-sidebar-inner {
  padding: 16px;
}

.gpbox-sidebar-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.gpbox-sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gpbox-sidebar-menu li {
  margin-bottom: 10px;
}

.gpbox-sidebar-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  display: block;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s;
}

.gpbox-sidebar-menu a:hover {
  background: #f1f5f9;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  float: right;
  margin-top: 4px;
  margin-right: 4px;
}

.gpbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.gpbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Dark Mode Sidebar 
body.dark-mode .gpbox-sidebar {
  background: #1a1a1a;
}

body.dark-mode .gpbox-sidebar-menu a {
  color: #eee;
}

body.dark-mode .gpbox-sidebar-menu a:hover {
  background: #333;
} */


/* Ads Slot 
.ads-slot {
  background: var(--card-bg);
  border: 1px dashed var(--border);
  color: var(--muted);
  text-align: center;
  padding: 12px;
  margin: 10px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
} */

/* Content Area 
.gpbox-content {
  flex: 1;
  padding: 10px 12px 80px;
}
 */

/* Article Card */
.gpbox-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.gpbox-card:hover {
  transform: translateY(-2px);
}

.gpbox-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gpbox-card h3 {
  font-size: 1rem;
  margin: 10px 12px 4px;
  color: var(--text);
}

.gpbox-card .meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 12px 10px;
}

/* Article (Single) */
/* === Single Post Style === */
.gpbox-article {
  border-radius: 12px;
  padding: 1px;
  margin: 10px 12px 80px;
}

.gpbox-featured-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.gpbox-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.gpbox-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.gpbox-content p {
  margin-bottom: 16px;
  font-size: 0.98rem;
}
 


.gpbox-share {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 20px;
}

.gpbox-share-buttons a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}

.gpbox-share-buttons a:hover {
  opacity: 0.8;
}


/* === Recent Post Widget Style === */
.gpbox-latepost {
margin-top: 20px;
  margin-bottom: 20px;
}
.gpbox-latepost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gpbox-latepost-list li {
  margin-bottom: .6rem;
  border-bottom: 1px solid #eee;
  padding-bottom: .4rem;
}

.gpbox-latepost-list a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color .2s;
}

.gpbox-latepost-list a:hover {
  color: #0073aa;
}

.gpbox-latepost h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: .5rem;
}


/* ==== LAYOUT SINGLE POST ==== */

.gpbox-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gpbox-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}

.gpbox-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.gpbox-content {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

/* ==== LATEPOST / RELATED ==== */
.gpbox-latepost, .gpbox-related {
  margin-top: 40px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
}

.gpbox-latepost h3,
.gpbox-related h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.gpbox-latepost-list,
.gpbox-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gpbox-latepost-list li,
.gpbox-related-list li {
  margin-bottom: 8px;
}

.gpbox-latepost-list a,
.gpbox-related-list a {
  color: #0066cc;
  text-decoration: none;
  transition: 0.2s;
}

.gpbox-latepost-list a:hover,
.gpbox-related-list a:hover {
  color: #ff6600;
}


/* Tombol Share */
.gpbox-share {
  margin-top: 30px;
  padding: 15px 20px;
  background: #f7f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.gpbox-share span {
  font-weight: 600;
  color: #333;
}

.gpbox-share-buttons {
  display: flex;
  gap: 10px;
}

.gpbox-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9e9e9;
  color: #222;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gpbox-share-btn:hover {
  background: #0073aa;
  color: #fff;
}

.gpbox-share-btn.fb:hover { background: #3b5998; }
.gpbox-share-btn.x:hover { background: #000; }
.gpbox-share-btn.wa:hover { background: #25d366; }

/* Latepost */
.gpbox-latepost {
  margin-top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.gpbox-latepost h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.gpbox-latepost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gpbox-latepost-list li {
  margin-bottom: 8px;
}

.gpbox-latepost-list a {
  text-decoration: none;
  color: #0073aa;
  transition: 0.3s;
}

.gpbox-latepost-list a:hover {
  color: #ff6600;
}



/* === Archive Post Style === */
.gpbox-archive-card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: none !important;
}

.gpbox-archive-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  text-decoration: none;
  color: inherit;
}

.gpbox-archive-link:hover {
  background: #f8f9fa;
}

.gpbox-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.gpbox-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gpbox-date {
  font-size: 0.7rem;
  color: #777;
  margin-bottom: 3px;
}

.gpbox-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

 h3.gpbox-title {
    margin: 0;
}




/* Bottom Navigation */
.gpbox-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 100;
  width: 100%;
  max-width: 480px;
    margin: 0 auto;
}

.gpbox-bottom-nav a {
  text-align: center;
  flex: 1;
  color: var(--muted);
  font-size: 1.3rem;
  text-decoration: none;
  transition: 0.2s;
}

.gpbox-bottom-nav a.active,
.gpbox-bottom-nav a:hover {
  color: var(--primary);
}

/* Alternative Bottom Navigation */

/* ==== GPBox Bottom Navigation ==== */
.gpbox-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gpbox-bg-nav, #fff);
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* List menu (flex layout) */
.gpbox-bottom-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Tiap item menu */
.gpbox-bottom-menu li {
  flex: 1;
  text-align: center;
}

/* Link menu */
.gpbox-bottom-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gpbox-text, #555);
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s ease;
}

/* Ikon (emoji atau svg di dalam <span>) */
.gpbox-bottom-menu a .gpbox-icon {
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

/* Efek hover & aktif */
.gpbox-bottom-menu a:hover,
.gpbox-bottom-menu .current-menu-item > a {
  color: var(--gpbox-accent, #2563eb);
}


.gpbox-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
  z-index: 999;
}

.gpbox-bottom-menu {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 6px 0;
  list-style: none;
}

.gpbox-bottom-menu li {
  flex: 1;
  text-align: center;
}

.gpbox-bottom-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.gpbox-bottom-menu svg {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  fill: currentColor;
}


.gpbox-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
  z-index: 999;
}

.gpbox-bottom-menu {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.gpbox-bottom-menu li {
  flex: 1;
  text-align: center;
}

.gpbox-bottom-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.gpbox-bottom-menu img.gpbox-bottom-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.gpbox-bottom-menu img.svg-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto 4px;
  object-fit: contain;
  fill: currentColor;
}
.gpbox-bottom-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 11px;
  color: var(--gpbox-text, #333);
}

.gpbox-bottom-menu img.svg-icon,
.gpbox-bottom-menu svg {
  display: block;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}

.gpbox-bottom-menu a:hover img.svg-icon,
.gpbox-bottom-menu a:hover svg {
  opacity: 0.8;
  transform: scale(1.05);
}


.gpbox-more {
  text-align: center;
  margin: 20px 0;
}

.gpbox-more-link {
  display: inline-block;
  background: var(--gpbox-accent, #2563eb);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.gpbox-more-link:hover {
  background: #1e40af;
}

.gpbox-pagination {
  text-align: center;
  margin: 30px 0;
}
.gpbox-pagination a {
  margin: 0 5px;
  text-decoration: none;
  color: var(--gpbox-text, #333);
}
.gpbox-pagination .current {
  font-weight: bold;
  color: var(--gpbox-accent, #2563eb);
}


/* ==============================
   RESPONSIVE ADS STYLE
   ============================== 
.ads-slot,
.ads-header,
.ads-bottom,
.ads-middle {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 1.5rem auto;
  overflow: hidden;
}

/* Jika banner berupa gambar 
.ads-slot img,
.ads-header img,
.ads-bottom img,
.ads-middle img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: none;
}

/* Jika plugin menampilkan iframe (seperti Google AdSense) 
.ads-slot iframe,
.ads-header iframe,
.ads-bottom iframe,
.ads-middle iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: none;
}

/* Styling tambahan agar iklan tidak terlalu rapat 
.ads-slot + .ads-slot {
  margin-top: 1rem;
}


/* Untuk blok iklan di tengah artikel 
.ads-middle {
  margin: 2rem 0;
}

/* Untuk iklan di bawah artikel 
.ads-bottom {
  margin-top: 2rem;
}

/* Untuk iklan header 
.ads-header {
  margin: 1rem 0;
  text-align: center;
} */




/* ====== Layout Dasar Halaman ====== */
.gpbox-content {
  padding: 10px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--gpbox-bg, #ffffff);
}

.gpbox-container {
  width: 100%;
}

/* ====== Struktur Halaman ====== */
.gpbox-page {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
}

.gpbox-page-header {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

/* ====== Judul Halaman ====== */
.gpbox-page-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gpbox-title-color, #222);
  margin: 0;
}

/* ====== Konten Halaman ====== */
.gpbox-page-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gpbox-text-color, #333);
}

.gpbox-page-content p {
  margin-bottom: 1.2em;
}

.gpbox-page-content a {
  color: var(--gpbox-link-color, #0066cc);
  text-decoration: none;
}

.gpbox-page-content a:hover {
  text-decoration: underline;
}

.gpbox-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ====== Pesan Jika Kosong ====== */
.gpbox-no-content {
  text-align: center;
  padding: 50px 0;
  color: #777;
  font-style: italic;
}



/*thumb*/
.gpbox-thumb {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
}

.gpbox-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gpbox-thumb:hover .gpbox-img {
  transform: scale(1.05);
}

/* Iklan Responsif */
/* === Iklan Umum (Semua Posisi) === */
.gpbox-ads,
.gpbox-ads-middle,
.gpbox-ads-header,
.gpbox-ads-bottom {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 15px auto;
  display: flex;
  justify-content: center;
  
}

/* Iklan responsif di dalamnya */
.gpbox-ads ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  /*height: auto !important; */
  max-width: 100%;
}

/* Placeholder (saat belum ada iklan) */
.ads-placeholder,
.gpbox-placeholder {
  background: #f7f7f7;
  border: 1px dashed #ccc;
  padding: 15px;
  color: #777;
  font-size: 14px;
  text-align: center;
  border-radius: 8px;
}

/* Pastikan di tengah dan tidak overflow */
.gpbox-ads-inner,
.gpbox-adcode {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* --- Struktur dalam setiap slot iklan --- */
.gpbox-ads-inner {
  width: 100%;
  text-align: center;
}

.gpbox-adcode,
.gpbox-widget-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
    overflow: hidden;

}




/* === Footer === */
.gpbox-footer {
  background-color: var(--gpbox-footer-bg, #f9f9f9);
  color: var(--gpbox-footer-text, #333);
  text-align: center;
  padding: 20px 10px 30px; /* ekstra ruang bawah agar tidak tabrakan dengan bottom-nav */
  border-top: 1px solid #ddd;
  max-width: 480px;
  width: 100%;
  max-width: 480px;
    margin: 0 auto;
    position: relative;
  z-index: 1;
}

.gpbox-footer a {
  color: var(--gpbox-footer-text, #333);
  text-decoration: none;
}

.gpbox-footer a:hover {
  color: var(--gpbox-accent, #2563eb);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (min-width: 768px) {
  .gpbox-card img {
    height: 220px;
  }
  .gpbox-content {
    max-width: 600px;
  }

  .gpbox-thumb img {
    width: 100px;
    height: 100px;
  }
  .gpbox-title {
    font-size: 1rem;
  }

  .gpbox-header-inner {
    padding: 12px 20px;
  }
  .gpbox-header .logo {
    font-size: 1.3rem;
  }
  
   .gpbox-page {
    padding: 20px;
  }

  .gpbox-page-title {
    font-size: 1.6rem;
  }
  .gpbox-article {
    padding: 18px;
  }


  .gpbox-latepost-title {
    font-size: 1.1rem;
  }


  .gpbox-ads-header,
  .gpbox-ads-middle,
  .gpbox-ads-bottom {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .gpbox-placeholder {
    font-size: 13px;
  }
}

/* Jika kontainer kosong tapi belum terisi script */
.gpbox-ads:empty::before {
  content: " ";
  display: block;
  min-height: 60px;
}



.gpbox-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px;
}

.gpbox-featured-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.gpbox-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.gpbox-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.4;
}

.gpbox-content {
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* Tombol Share */
.gpbox-share {
  margin-top: 30px;
  padding: 15px 20px;
  background: #f7f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gpbox-share span {
  font-weight: 600;
  color: #333;
}

.gpbox-share-buttons {
  display: flex;
  gap: 10px;
}

.gpbox-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9e9e9;
  color: #222;
  transition: all 0.3s ease;
}

.gpbox-share-btn:hover {
  color: #fff;
}

.gpbox-share-btn.fb:hover { background: #3b5998; }
.gpbox-share-btn.x:hover { background: #000; }
.gpbox-share-btn.wa:hover { background: #25d366; }

/* Related Post */
.gpbox-latepost {
  margin-top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.gpbox-latepost h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.gpbox-latepost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gpbox-latepost-list li {
  margin-bottom: 8px;
}

.gpbox-latepost-list a {
  text-decoration: none;
  color: #0073aa;
  transition: 0.3s;
}

.gpbox-latepost-list a:hover {
  color: #ff6600;
}


/* === Breadcrumb === */
.gpbox-breadcrumb-wrapper {
  max-width: 480px;
  margin: 10px auto;
  padding: 0 15px;
}

.gpbox-breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.gpbox-breadcrumb li {
  display: flex;
  align-items: center;
}

.gpbox-breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #888;
}

.gpbox-breadcrumb a {
  text-decoration: none;
  color: var(--gpbox-accent, #2563eb);
  transition: color 0.2s ease;
}

.gpbox-breadcrumb a:hover {
  color: #1e40af;
}

.gpbox-breadcrumb i.fa-home {
  margin-right: 4px;
  color: var(--gpbox-accent, #2563eb);
}
