/* ===========================
   ROOT & GLOBAL
=========================== */
:root{
  --primary:#0b4c8c;
  --accent:#f4a300;
  --text:#222;
  --muted:#6b7280;
  --radius:10px;
  --shadow:0 8px 30px rgba(10,23,45,0.06);
}

*{ box-sizing:border-box; }

body{
  font-family:'Poppins',system-ui,Arial;
  margin:0;
  background:#F3F6F3;
  overflow-x:hidden;
  
}






.container{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0;
}

/* ===========================
   HEADER BASE
=========================== */
.header{
  width:100%;
  position:sticky;
  top:0;
  z-index:999;
  transition:all .25s ease;
  background:linear-gradient(to bottom right, #009933 0%, #66ffcc 100%);
  box-shadow:0 2px 20px rgba(0,0,0,0.08);
  padding:0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 16px;
  transition:all .25s ease;
}

/* BRAND */
.brand-logo{
  height:64px;
  width:auto;
  display:block;
  transition:all .25s ease;
}

/* NAV DESKTOP */
.header-nav a{
  margin-left:32px;
  font-size:16px;
  font-weight:600;
  color:#222;
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
  transition:.25s;
}

.header-nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:var(--primary);
  left:0;
  bottom:0;
  transition:width .25s ease;
}
.header-nav a:hover::after{ width:100%; }

/* ===========================
   HEADER SHRINK
=========================== */
.header.shrink{
  padding:4px 0!important;
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(18px);
  box-shadow:0 2px 14px rgba(0,0,0,0.08);
}

.header.shrink .header-inner{ padding:0 16px; }
.header.shrink .brand-logo{ height:40px; }
.header.shrink .header-nav a{
  font-size:14px;
  margin-left:24px;
}

/* ===========================
   MOBILE TOGGLE
=========================== */
.header-toggle{
  display:none;
  width:34px;
  height:28px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

.header-toggle span{
  display:block;
  width:24px;
  height:3px;
  background:var(--primary);
  border-radius:3px;
  transition:.3s;
}

/* Active icon (X) */
.header-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.header-toggle.active span:nth-child(2){ opacity:0; }
.header-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ===========================
   MOBILE MENU FIX (OVERLAY)
=========================== */
.header-mobile{
  position:fixed;
  top:70px;                      /* mengikuti tinggi header */
  right:0;
  width:100%;
  height:auto;
  background:#fff;
  display:none;
  flex-direction:column;
  padding:15px 0;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  z-index:9999;
}

.header-mobile.open{
  display:flex;
}

.header-mobile a{
  display:block;
  padding:14px 18px;
  font-size:16px;
  font-weight:600;
  color:var(--primary);
  border-bottom:1px solid #eee;
  text-decoration:none;
}
.header-mobile a:hover{ background:#f4f9ff; }

/* ===========================
   BREAKPOINT
=========================== */
@media(max-width:900px){
  .header-nav{ display:none; }
  .header-toggle{ display:flex; }
  .brand-logo{ height:52px; }
}

/* ===========================
   HERO
=========================== */
.hero-home{ width:100%; margin:0; padding:0; }

.hero-slider{
  position:relative;
  overflow:hidden;
  height:650px;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slide.active{ opacity:1; }

.slide-inner{
  width:100%;
  margin:0 auto;
  padding:0 40px;
  text-align:center;
}

.slide-inner h1{
  font-size:50px;
  font-weight:600;
  color:whitesmoke;
  padding-bottom:0;
  margin:0;
}
.slide-inner h2{
  font-size:30px;
  font-weight:400;
  margin-top:0;
  color:whitesmoke;
  margin:0;
}
.slide-inner p{
  font-size:18px;
  color:white;
  margin:0;
}

.bayangan {
  position:absolute;
  background:rgba(0,0,0,0.45);
  padding:16px 22px;
  border-radius:10px;
  color:#fff;
  max-width:60%;
  bottom:5%;
}

@media(max-width:900px){
  .hero-slider{ height:260px; }
  .slide-inner h1{ font-size:35px; }
  .slide-inner h2{ font-size:16px; }
  .slide-inner p{ font-size:10px; }
  .bayangan {bottom:50%;
      padding:16px 22px;
      max-width:90%;
  }
}


.hero{
  position:relative;
  width:100vw;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
}

.hero .hero-slider,
.hero .slide{ width:100%; height:87vh; }

/* ===========================
   CONTENT
=========================== */
.about .about-card{
  background:#fff;
  border-radius:12px;
  padding:30px;
  box-shadow:0 10px 30px rgba(10,23,45,0.04);
  margin-bottom:28px;
}

.about .about-card h2{
  margin-top:0;
  font-size:22px;
  color:var(--primary);
}

.programs-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin-bottom:30px;
}



.program-thumb img{
  width:100%;
  height:200px;
  object-fit:cover;
}


.program-card-content h4{ margin:0; color:var(--primary); }

.donation{
  background:linear-gradient(90deg,#0b4c8c 0%,#07345f 100%);
  color:#fff;
  border-radius:12px;
  padding:40px;
  margin:32px 0;
  text-align:center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.news-card {
  position: relative;
}

.news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;   /* selalu radius 10px */
}

.news-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;   /* sebelum hover */
  transition: 0.4s ease;
}

.donasi-thumb img {
  width: 217px;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;   /* sebelum hover */
  transition: 0.4s ease;
}

/* Blur gambar saat hover */
.news-thumb:hover img {
  transform: scale(1.05);
  filter: blur(2px) brightness(50%);
  border-radius: 10px;   /* sesudah hover tetap 10px */
}

/* TITLE: muncul kecil tanpa bold, tanpa bg sebelum hover */
.news-title-overlay {
  position: absolute;
  font-size: 15px;
  text-transform: uppercase;
  left: 0;
  right: 0;
  bottom: 3px; 
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 20px 12px 6px 12px;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.9));
  transition: all .35s ease;
  z-index: 2;
}

.news-title-overlay p {
  margin: 0;
  font-size: 10px;       /* kecil */
  text-transform: uppercase;
  font-weight: normal;   /* tidak bold */
  color: #fff;
}


.tulisan {
  position: absolute;
  font-size: 18px;
  text-transform: uppercase;
  left: 0;
  right: 0;
  bottom: 3px; 
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  background: transparent;
  transition: all .35s ease;
  z-index: 1;
}

.tulisan p {
  margin: 0;
  font-size: 10px;       /* kecil */
  text-transform: uppercase;
  font-weight: normal;   /* tidak bold */
  color: #fff;
}

/* Saat hover muncul background transparan */
.news-thumb:hover {
  color: rgba(0, 0, 0, 0.45);
}


.card{
  background:#fff;
  border-radius:12px;
  padding:10px;
  box-shadow:var(--shadow);
}

.section-title{
  font-size:20px;
  font-weight:700;
  color:#07345f;
  margin:20px 0;
}

.center{ text-align:center; margin-top:18px; }

.btn{
  background:var(--primary);
  color:#fff;
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
}

.btn-selengkapnya{
  background:var(--primary);
  color:#fff;
  padding:10px 50px;
  border-radius:8px;
  text-decoration:none;
}

.btn-outline{
  background:transparent;
  border:1px solid var(--primary);
  color:var(--primary);
}

.site-footer{
  background:var(--primary);
  color:#fff;
  padding:36px 0;
  text-align:center;
  margin-top:60px;
}


/* ===========================
   MOBILE MENU (FROSTED-BLUR)
   Panel menu semi-transparan + backdrop blur
=========================== */

.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.28);   /* gelap ringan di belakang menu */
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease, visibility .28s ease;
  z-index:998;
}

.menu-backdrop.active{
  opacity:1;
  visibility:visible;
}

/* frosted / translucent menu panel */
.header-mobile{
  position:fixed;
  top:70px;                 /* sesuaikan dengan tinggi header */
  right:0;
  width:100%;
  max-width:420px;         /* lebar menu (ubah jika mau lebih lebar) */
  height:calc(100vh - 70px);
  display:none;
  flex-direction:column;
  padding:18px 12px;
  gap:6px;

  /* IMPORTANT: translucent + blur (frosted glass) */
  background: rgba(255,255,255,0.18);        /* semi-transparan */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* subtle border and shadow to separate from backdrop */
  border-left: 1px solid rgba(255,255,255,0.10);
  box-shadow: -8px 16px 40px rgba(8,22,36,0.25);

  z-index:9999;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

/* visible state */
.header-mobile.open{
  display:flex;
  transform: translateX(0);
  transition: transform .28s ease;
}

/* menu links style stays the same but ensure readability on translucent bg */
.header-mobile a{
  display:block;
  padding:14px 18px;
  font-size:16px;
  font-weight:600;
  color:var(--primary);
  border-bottom:1px solid rgba(255,255,255,0.06);
  text-decoration:none;
}

/* hover contrast */
.header-mobile a:hover{
  background: rgba(255,255,255,0.06);
}

/* ============================ */
/* Card wrapper: untuk mengatur layout & centering */
.about-card-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem; /* jarak atas/bawah dan kiri/kanan */
}

/* Card utama */
.about-card {
  background-color: #ffffff; /* atau sesuaikan dengan tema */
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 800px;  /* lebar maksimal card */
  width: 100%;       /* agar responsif */
  padding: 2rem;
  box-sizing: border-box;
  /* font-family dsb bisa disesuaikan jika tema tertentu */
}

/* Header card (judul) */
.about-card-header h2 {
  margin-top: 0;
  font-size: 2rem;  /* bisa disesuaikan */
  color: #333333;   /* judul warna gelap — sesuaikan tema */
  /* border-bottom optional */
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Konten card */
.about-card-content {
  line-height: 1.6;
  color: #444444; /* teks utama warna sedikit abu-abu */
}

/* Untuk media kecil (responsif) */
@media (max-width: 600px) {
  .about-card {
    padding: 1.5rem;
  }
  .about-card-header h2 {
    font-size: 1.5rem;
  }
}


.programs-wrapper {
  padding: 2rem 1rem;
}

.programs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Card program */
.program-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.16);
}

.program-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card-content {
  padding: 1.2rem 1.3rem;
  color: #444;
}

.program-card-news {
  padding: 10px 12px;
  color: #444;
}

.program-card-content h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: .6rem;
}

.program-card-content h3 a {
  text-decoration: none;
  color: #222;
}

.program-card-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.program-card-footer {
  margin-top: auto;
}

.btn-readmore {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 6px;
  background: #007bff;
  color: #fff;
  transition: background .25s;
}

.btn-readmore:hover {
  background: #005fcc;
}

.listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  padding: 1.2rem 1.3rem;
}



.page-section {
  display: flex;
  justify-content: center;
  padding: 40px 15px;
}

.contact-card {
  max-width: 650px;
  width: 100%;
  background: #fff;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.09);
}

.page-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label span {
  display: block;
  font-size: .95rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: #fff;
}

.btn-submit {
  background: var(--primary);
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.25s ease;
  width: 100%;
}

.btn-submit:hover {
  opacity: .9;
}




.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
}

.about-left, .about-right {
  background: var(--card-bg, #fff);
  border-radius: 14px;
  padding: 0 30px 25px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-left h2,
.about-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #4CAF50;
}



/* Responsive */
@media(max-width:768px){
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   ABOUT SECTION PRESISI
=========================== */
.about.container.about-grid {
  padding-left: 15px;   /* jarak kiri agar tidak mepet di mobile */
  padding-right: 15px;  /* jarak kanan agar tidak mepet di mobile */
  max-width: 1140px;    /* sama seperti container lain */
  margin: 0 auto;       /* center alignment */
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .about.container.about-grid {
    padding-left: 30px;  /* jarak kiri lebih lega di tablet/desktop */
    padding-right: 30px; /* jarak kanan lebih lega di tablet/desktop */
  }
}

@media (max-width: 480px) {
  .about.container.about-grid {
    padding-left: 12px;  /* ekstra pas di layar kecil */
    padding-right: 12px;
  }
}


/* ===========================
   PAGE LIST FULL WIDTH (1 kolom)
=========================== */

.page-block {
  background:#fff;
  border-radius:14px;
  padding:28px 32px;
  margin-bottom:38px;
  box-shadow:0 8px 26px rgba(0,0,0,0.08);
}

.page-block h3 {
  font-size:26px;
  margin:0 0 10px;
  color:var(--primary);
}

.page-block .muted {
  font-size:10px;
  color:var(--muted);
  margin-bottom:16px;
}

.full-content p {
  margin-bottom:16px;
  line-height:1.65;
}

.page-block p {
  line-height:1.7;
}

.page-block a.btn-readmore {
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:8px 16px;
  border-radius:8px;
  margin-top:10px;
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.page-block a.btn-readmore:hover {
  opacity:.85;
}

/* responsive */
@media(max-width:768px){
  .page-block{
    padding:22px 20px;
  }
  .page-block h3{
    font-size:22px;
  }
}
hr {
  border: none;
  height: 1px;
  background-color: rgba(0,0,0,0.15);
  margin: 0;
}

.garis {
  border: 0;
  height: 1px;
  width: 120px;              /* atur panjang */
  margin: 0 auto;         /* auto = pusat horizontal */
  background: #777;
}
/* ===========================
   TENTANG KAMI GRADASI HIJAU
=========================== */
.section-title.tentang-kami {
  display: inline-block;          /* agar background hanya di belakang teks */
  padding: 6px 150px 6px 16px;              /* jarak atas/bawah dan kiri/kanan */
  background: linear-gradient(to right, green, white);
  box-shadow:-15px 0 30px rgba(0,0,0,0.08);
  color: #fff;                    /* teks putih */
  border-radius: 6px 0 0 6px;             /* sudut sedikit membulat */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 80%;
}



form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input[type="text"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box;
}

#editor {
    min-height: 400px;
}

form button {
    margin-top: 15px;
    padding: 10px 20px;
}



/* ======================================
   FOOTER FULL WIDTH
====================================== */
.footer-full {
  width: 100%;
  background: linear-gradient(135deg, #009933 0%, #00c897 40%, #66ffcc 100%);
  color: #fff;
  padding: 60px 0 25px;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
}

/* Full width layout container */
.footer-inner {
  width: 100%;
  max-width: 1320px; /* Extra wide */
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.footer-box h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.footer-box p {
  line-height: 1.6;
  opacity: .95;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #fff;
  opacity: .9;
  font-size: 15px;
  transition: .25s ease;
}

.footer-box ul li a:hover {
  opacity: 1;
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.25);
  opacity: .9;
  font-size: 15px;
}

/* Mobile enhancements */
@media (max-width: 600px) {
  .footer-inner {
    padding: 0 20px;
    text-align: center;
  }
  .footer-box ul li a:hover {
    padding-left: 0;
  }
}

.gambarkonten {
    position: relative;
  display: block;
  overflow: hidden;
  border-radius:15px 15px 0 0;
}

.gambarkonten img {
    width: 100%;
  object-fit: cover;
  margin: auto;
    
}

.gambarkonten p {
    position: absolute;
  margin: 0;
  font-family: Consolas;
  font-size: 13px;       /* kecil */
  font-weight: normal;   /* tidak bold */
  color: #fff;
  left: 0;
  top:0;
  background-image: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.9));
  padding: 5px 50px 5px 10px;
}

.judulkonten {
    font-family: "Agency FB";
    font-size: 30px;
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #4CAF50;
    text-decoration: none;
}

.judulartikel {
    font-family: "Agency FB";
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #4CAF50;
    text-decoration: none;
}

/* =========================
   MEDIA LIBRARY (ADMIN)
========================= */

.media-upload-form {
  margin: 20px 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.media-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
}

.media-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.media-info {
  padding: 10px 12px;
  text-align: center;
}

.media-title {
  display: block;
  font-size: 13px;
  word-break: break-all;
}

.media-size {
  font-size: 11px;
  color: #777;
}

.media-actions {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  gap: 6px;
}

.media-actions .btn-small {
  flex: 1;
  text-align: center;
}


    .grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: auto;
        padding: 20px;
    }

    .grid-item {
        text-align: center;
        padding:20px 50px;
    }

    .grid-item img {
        width: 150px;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }

    .grid-item h4 {
        margin-top: 10px;
            font-family: "Agency FB";
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #4CAF50;
    text-decoration: none;
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .grid-container {
            grid-template-columns: 1fr;
        }
    }
    
    
    
    
    .nav-item { position:relative; display:inline-block; }
.submenu{
  display:none;
  position:absolute;
  background:#fff;
  min-width:180px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.nav-item:hover .submenu{ display:block; }
.submenu a{ display:block; padding:10px 14px; }

/* ===========================
   SHARE BUTTON (GLOBAL)
=========================== */
.share-box{
  display:flex;
  align-items:center;
  gap:10px;
  margin:25px 0;
  flex-wrap:wrap;
}

.share-label{
  font-size:14px;
  color:#666;
  margin-right:6px;
}

.share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  transition:.25s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}

.share-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}

/* warna platform */
.share-btn.wa{ background:#25D366; }
.share-btn.fb{ background:#1877F2; }
.share-btn.x { background:#000; }
.share-btn.copy{
  background:#6b7280;
  font-size:16px;
}


/* ===========================
   SHARE PRO (INLINE)
=========================== */
.share-inline{
  display:flex;
  align-items:center;
  gap:12px;
  margin:25px 0;
}

.share-inline span{
  font-size:14px;
  color:#666;
}

.share-inline a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.share-inline a svg{
  width:18px;
  height:18px;
  fill:#333;
}

.share-inline a:hover{
  background:#000;
}

.share-inline a:hover svg{
  fill:#fff;
}

/* ===========================
   FLOATING SHARE
=========================== */
.share-floating{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.share-floating a{
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  font-size:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition:.25s;
}

.share-floating a:hover{
  transform:translateX(-4px);
}

.share-floating .wa{ background:#25D366; }
.share-floating .fb{ background:#1877F2; }
.share-floating .x { background:#000; }

@media(max-width:768px){
  .share-floating{ display:none; }
}



/* ===========================
   SHARE INLINE PRO++
=========================== */
.share-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin:30px 0;
  flex-wrap:wrap;
}

.share-inline span{
  font-size:14px;
  color:#666;
  margin-right:6px;
}

.share-inline a{
  min-width:38px;
  height:38px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  transition:.25s;
}

.share-inline a:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 22px rgba(0,0,0,.28);
}

/* warna */
.share-inline .wa{ background:#25D366; }
.share-inline .tg{ background:#229ED9; }
.share-inline .x { background:#000; }
.share-inline .th{ background:#000; }
.share-inline .ig{ background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.share-inline .tt{ background:#010101; }

/* ===========================
   FLOATING SHARE PRO++
=========================== */
.share-floating{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
  transition:.35s ease;
}

.share-floating.hide{
  opacity:0;
  pointer-events:none;
  transform:translate(20px,-50%);
}

.share-floating a{
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  font-size:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition:.25s;
}

.share-floating a:hover{
  transform:translateX(-4px);
}

.share-floating .wa{ background:#25D366; }
.share-floating .tg{ background:#229ED9; }
.share-floating .x { background:#000; }
.share-floating .th{ background:#000; }

@media(max-width:768px){
  .share-floating{ display:none; }
}
.share-inline{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:25px 0;
}

.share-inline a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  transition:.25s;
}

.share-inline a:hover{
  transform:translateY(-3px);
  opacity:.85;
}

.share-inline svg{
  width:20px;
  height:20px;
  fill:#fff;
}

/* Warna brand */
.wa{background:#25D366;}
.fb{background:#1877F2;}
.tg{background:#0088cc;}
.x{background:#000;}
.th{background:#000;}
.tt{background:#000;}
.ig{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);}

.dalam {
  background-color: white;
  padding: 10px;
}

.content-cap {
  color: #666;
  font-size: 0.8em;
  margin-left: 0;
  font-style: italic;
}