/* =========================
   Webside Plugin Styles
   ========================= */

/* Container utama: 3 kolom sama rata */
.webside-single-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom = sama rata */
  gap: 20px;
  margin: 20px 0;
  align-items: stretch; /* samakan tinggi semua kolom */
  padding: 20px 20px 0px 20px;
}

/* Responsive mobile: stack 1 kolom */
@media (max-width: 900px) {
  .webside-single-wrap {
    grid-template-columns: 1fr;
  }
}

/* Kolom umum */
.webside-col {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* =========================
   Header (H2 di atas semua)
   ========================= */
.webside-header {
  margin: 0 0 15px 0;
  text-align: center;
}
.webside-header .webside-h2 {
  font-size: 22px;
  font-weight: bold;
  color: #156503;
  margin: 0;
}

/* =========================
   Kolom kiri (Thumbnail)
   ========================= */
.webside-thumb-wrap {
  text-align: center;
  flex: 1;
}
.webside-featured {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.webside-no-thumb {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 6px;
  color: #888;
  font-size: 14px;
}

/* =========================
   Kolom tengah (Demo)
   ========================= */
.webside-col.demo {
  display: flex;
  flex-direction: column;
}

.webside-iframe-wrap {
  flex: 1;
  display: flex;
}
/* Iframe demo hybrid */
.webside-iframe {
  width: 100%;
  height: 70vh;       /* default = 80% tinggi layar */
  min-height: 500px;  /* fallback minimal */
  border: none;
  border-radius: 6px;
}

/* Tombol Klik Full Web */
.webside-demo-btn-wrap {
  margin-top: 12px;
  text-align: center;
}
.webside-demo-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #157003;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}
.webside-demo-btn:hover {
  background: #0e5202;
}

/* =========================
   Kolom kanan (Artikel)
   ========================= */
.webside-col.right .webside-demo-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.webside-col.right .webside-article-inner {
  flex: 1;
  max-height: 467px;
  overflow: hidden;
  transition: max-height .4s ease;
}
.webside-col.right .webside-article-inner.expanded {
  max-height: none;
}

.webside-article-more {
  text-align: center;
  margin-top: 8px;
}
.webside-more-btn {
  display: inline-block;
  padding: 8px 12px;
  background: #157003;
  color: #fff;
  border-radius: 6px;
  text-decoration: none; margin-top: 8px; font-size: 14px;
}
.webside-more-btn:hover {
  background: #0e5202;
}


/* Sembunyikan tombol lebih banyak di mobile */
@media (max-width: 900px) {
  .webside-article-more {
    display: none;
  }
  .webside-col.right .webside-article-inner {
    max-height: none !important; /* tampil full di mobile */
  }
}

/* Promo full width (kolom ke-4) */
.webside-promo-full {
  padding: 20px;
}

.webside-promo-inner {
  background: #f9fff6;
  border: 1px solid #cce5cc;
  border-radius: 6px;
  padding: 15px;
  font-size: 14px;
}
