/* -------------------------------------------------------------
   LENSIRO — FINAL IMAGE & LAYOUT CSS
   Bersih • Tidak Double • Tidak Bentrok
-------------------------------------------------------------- */

/* --- Gambar bawaan markdown ![[gambar.png]] --- */
.markdown-preview-view img,
.markdown-rendered img,
.image-embed img {
  display: block;
  margin: 1.2em auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  max-width: 95%;
  height: auto;
  transition: all 0.2s ease-in-out;
}

/* Efek hover ringan */
.markdown-preview-view img:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Styling figure --- */
.markdown-preview-view figure {
  text-align: center;
  display: block;
  margin: 1em auto;
}

.markdown-preview-view figure img {
  margin-bottom: 0.4em;
}

figcaption {
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 6px;
  color: #555;
}

/* -------------------------------------------------------------
   LIGHTBOX (ZOOM) — ANTI MELEBIHI LAYAR
-------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-in-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-out;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease-in-out;
}

.lightbox img:hover {
  transform: scale(1.02);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* -------------------------------------------------------------
   HILANGKAN HEADER OBISIDIAN
-------------------------------------------------------------- */
.site-header,
.site-header img,
.site-header .site-title,
.site-header .site-logo {
  display: none !important;
}

/* -------------------------------------------------------------
   SIDEBAR RAPAT & LOGO LENSIRO RAPI
-------------------------------------------------------------- */
.site-sidebar {
  padding-left: 0 !important;
  text-align: left !important;
  overflow: visible !important;
}

.site-body-left-column {
  padding-left: 10px !important;
}

.site-body-left-column img {
  margin-left: 0 !important;
  display: block;
}

/* -------------------------------------------------------------
   CUSTOM FOOTER
-------------------------------------------------------------- */

/* hide original */
.publish-footer,
.site-footer,
footer.publish-footer {
  font-size: 0 !important;
}

/* custom text */
.publish-footer::after,
.site-footer::after,
footer.publish-footer::after {
  content: "Manual Lensiro • All Rights Reserved" !important;
  font-size: 12px !important;
  color: #777 !important;
}

/* -------------------------------------------------------------
   HILANGKAN IKON PAGE HEADER (OBSIDIAN)
-------------------------------------------------------------- */
.page-header-icon svg {
  display: none !important;
}
/* ------ */
