/* Lightbox */
.soucg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.soucg-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.soucg-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}
.soucg-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.soucg-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.soucg-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.soucg-lightbox-close:hover {
  opacity: 1;
}
.soucg-lightbox-prev, .soucg-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.soucg-lightbox-prev:hover, .soucg-lightbox-next:hover {
  background: rgba(244,121,32,0.9);
}
.soucg-lightbox-prev { left: -60px; }
.soucg-lightbox-next { right: -60px; }
@media(max-width: 768px) {
  .soucg-lightbox-prev { left: 10px; }
  .soucg-lightbox-next { right: 10px; }
}

/* POST SINGLE */
.post-hero{background:var(--dark);padding:32px 0 0;position:relative}
.post-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 100% at 50% 0%,rgba(244,121,32,.06),transparent);pointer-events:none}
.post-meta-top{max-width:820px;margin:0 auto;padding:0 20px}
.breadcrumb{font-size:11px;color:#888;display:flex;align-items:center;gap:6px;margin-bottom:14px}
.breadcrumb a{color:var(--orange)}
.breadcrumb-sep{color:#333}
.post-title-main{font-family:var(--font-head);font-size:36px;font-weight:900;color:var(--white);line-height:1.15;margin-bottom:16px}
.post-sub{font-size:17px;color:#aaa;line-height:1.6;font-style:italic;margin-bottom:20px}
.post-author-bar{display:flex;align-items:center;gap:14px;padding:16px 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:24px}
.author-avatar-sm{width:44px;height:44px;border-radius:50%;overflow:hidden;flex-shrink:0;border:2px solid var(--orange);background:var(--gray)}
.author-avatar-sm img{width:100%;height:100%}
.author-name-sm{font-weight:700;font-size:14px;color:var(--white)}
.author-role-sm{font-size:11px;color:#888}
.post-date-sm{font-size:11px;color:#888;margin-left:auto}
.post-hero-img{
  max-width:1040px;margin:0 auto;padding:0 20px;padding-top:24px;
}
.post-hero-img figure{
  position:relative;
  border-radius:12px 12px 0 0;
  background:#0d0d0d;
}
.post-hero-img .img-wrap{
  overflow:hidden;
  border-radius:12px 12px 0 0;
  max-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.post-hero-img img{
  width:100%;
  max-height:560px;
  object-fit:cover;
  object-position:center center;
  display:block;
  border-radius:12px 12px 0 0;
}
.post-hero-img figcaption{
  position:absolute;bottom:12px;right:12px;
  font-size:11px;color:rgba(255,255,255,0.85);padding:4px 10px;
  background:rgba(0,0,0,0.6);backdrop-filter:blur(4px);
  border-radius:4px;line-height:1.5;
}

.post-layout{max-width:1280px;margin:auto;padding:32px 20px;display:grid;grid-template-columns:1fr 320px;gap:48px}
.post-body{max-width:740px}
.post-content{font-size:18px;line-height:1.85;color:#1a1a1a}
.post-content p{margin-bottom:22px}
.post-content a{color:var(--orange);text-decoration:underline;text-underline-offset:2px;font-weight:500;}
.post-content a:hover{color:var(--orange-d);text-decoration-thickness:2px;}
.post-content .wp-block-image {margin:32px 0;}
.post-content figcaption {font-size:14px; color:var(--gray); font-style:italic; text-align:center; margin-top:10px; line-height:1.5;}
.post-content h3{font-family:var(--font-head);font-size:24px;font-weight:700;margin:36px 0 14px;color:var(--dark)}
.post-content blockquote{
  border-left:4px solid var(--orange);padding:18px 22px;margin:28px 0;
  background:var(--orange-l);border-radius:0 var(--radius) var(--radius) 0;
  font-style:italic;font-size:18px;color:var(--dark);
  position:relative;
}
.post-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:32px;padding-top:20px;border-top:1px solid var(--gray-l)}
.post-share{display:flex;align-items:center;gap:10px;margin-top:20px;padding:16px 0;border-top:1px solid var(--gray-l);border-bottom:1px solid var(--gray-l)}
.share-label{font-family:var(--font-cond);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--gray)}
.share-btn{padding:8px 16px;border-radius:30px;font-size:12px;font-weight:700;border:none;cursor:pointer;color:var(--white);display:flex;align-items:center;gap:5px;transition:filter .2s}
.share-btn:hover{filter:brightness(1.15)}
.share-fb{background:#1877F2}
.share-tw{background:#000}
.share-wa{background:#25D366}

.author-box{background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:24px;margin-top:32px;border-top:3px solid var(--orange)}
.author-box-inner{display:flex;gap:18px;align-items:flex-start}
.author-box-avatar{width:72px;height:72px;border-radius:50%;flex-shrink:0;border:3px solid var(--orange);overflow:hidden;background:var(--gray)}
.author-box-avatar img{width:100%;height:100%}
.author-box-name{font-family:var(--font-cond);font-size:18px;font-weight:800;text-transform:uppercase;margin-bottom:2px}
.author-box-role{font-size:12px;color:var(--orange);font-weight:700;margin-bottom:8px}
.author-box-bio{font-size:13px;color:var(--gray);line-height:1.6}
