/* ===== Media & Caption ===== */
.article-media { margin:20px 0; text-align:center; width:100%; }
.article-media img { max-width:100%; display:block; vertical-align:bottom; border-radius:12px; margin:0; box-shadow:0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s; }
.article-media img:hover { transform:scale(1.02); }
.article-media video, .article-media audio { max-width:100%; border-radius:12px; margin:0; box-shadow:0 4px 12px rgba(0,0,0,0.08); }
.media-caption { display:flex; align-items:center; font-size:0.85rem; color:#666; margin:0; padding:5px 12px; border-top:1px solid #ddd; border-radius:0 0 12px 12px; background:#f5f5f5; width:100%; box-sizing:border-box; }
.caption-icon { margin-right:6px; font-size:1rem; color:#5a7eb8; }

/* ===== Pull Quote ===== */
.pull-quote { margin:25px 0; padding:18px 20px; border-left:5px solid #5a7eb8; font-style:italic; background:#ececec; color:#333; font-size:1.1rem; line-height:1.6; border-radius:8px; box-shadow:0 3px 8px rgba(0,0,0,0.05); display:flex; align-items:flex-start; }
.pull-quote-icon { margin-right:8px; font-size:1.3rem; color:#5a7eb8; }

/* ===== Highlight ===== */
.highlight { display:flex; align-items:flex-start; width:100%; max-width:100%; box-sizing:border-box; background:#f0f0f0; padding:8px 12px; border-radius:6px; font-weight:600; box-shadow:0 2px 6px rgba(0,0,0,0.05); line-height:1.4; transition: background 0.3s; position:relative; word-break: break-word; margin:4px 0; }
.highlight:hover { background:#e0e0e0; }
.highlight::before { content:"💡"; margin-right:8px; font-size:1.1rem; flex-shrink:0; }

/* ===== Button / Link ===== */
.btn-cta { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; background:#5a7eb8; color:#fff; font-weight:600; border-radius:20px; text-decoration:none; margin:10px 0; transition: all 0.3s; box-shadow:0 3px 10px rgba(0,0,0,0.1); }
.btn-cta:hover { background:#496a9c; transform:translateY(-2px) scale(1.02); box-shadow:0 5px 14px rgba(0,0,0,0.15); }
.btn-icon { font-size:1rem; }

/* ===== List / Tips ===== */
.list-tips { padding-left:20px; margin:15px 0; border-left:4px solid #5a7eb8; background:#f5f5f5; border-radius:8px; box-shadow:0 3px 8px rgba(0,0,0,0.05); }
.list-tips li { margin-bottom:10px; position:relative; padding-left:28px; font-weight:500; display:flex; align-items:center; gap:6px; color:#444; }
.list-icon { font-size:0.95rem; color:#5a7eb8; }

/* ===== Responsive Video ===== */
.responsive-video { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; max-width:100%; margin:12px 0; }
.responsive-video iframe { position:absolute; top:0; left:0; width:100%; height:100%; }

/* ===== Instagram Embed ===== */
.instagram-media {
  margin: 20px auto 0 auto !important;
  display: block;
  max-width: 540px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  overflow: hidden; /* biar isi ga keluar */
}

.instagram-media iframe {
  width: 100% !important;
  height: auto !important;
  border: none;
  display: block;
}

/* Caption nyatu dengan embed */
.instagram-caption {
  max-width: 540px;
  margin: 0 auto 20px auto;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: #f5f5f5;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.instagram-caption .caption-icon {
  margin-right: 6px;
  font-size: 1rem;
  color: #E1306C; /* warna khas IG */
}

/* Responsive di layar kecil */
@media (max-width: 480px) {
  .instagram-media,
  .instagram-caption {
    max-width: 100%;
    border-radius: 8px;
    font-size: 0.8rem;
  }
}

