/* TAC News Single */
/* ===== HEADER FIX ===== */
body:not(.home-page) #site-header {
  background: rgba(13,13,13,.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.4) !important;
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.article-hero:hover .article-hero-bg { transform: scale(1.03); }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.95) 0%, rgba(13,13,13,.5) 50%, rgba(13,13,13,.2) 100%);
}
.article-hero-content {
  position: relative; z-index: 2;
  padding-top: 160px;
  padding-bottom: 56px;
  max-width: 820px;
}
.article-hero-content .breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.article-hero-content .breadcrumb a { color: #888; font-size: .8rem; transition: color .3s; }
.article-hero-content .breadcrumb a:hover { color: var(--red); }
.article-hero-content .breadcrumb i { color: #555; font-size: .65rem; }
.article-hero-content .breadcrumb span { color: #aaa; font-size: .8rem; }
.article-hero-content h1 {
  color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2; margin-bottom: 20px;
}
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,.55); font-size: .82rem;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta i { color: var(--red); }

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: flex-start;
  padding: 64px 0 80px;
}

/* ===== ARTICLE BODY ===== */
.article-body { min-width: 0; }
.article-lead {
  font-size: 1.15rem; color: #333; font-weight: 500;
  line-height: 1.8; margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f0f0f0;
}
.article-body h2 {
  font-size: 1.5rem; margin: 40px 0 16px; color: var(--black);
}
.article-body h3 {
  font-size: 1.15rem; margin: 32px 0 12px; color: var(--black);
}
.article-body p { color: #555; font-size: .97rem; line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 24px; margin-bottom: 20px;
}
.article-body ul { list-style: none; padding-left: 0; }
.article-body ul li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #555; font-size: .95rem; line-height: 1.7; margin-bottom: 10px;
}
.article-body ul li::before {
  content: ''; width: 7px; height: 7px; min-width: 7px;
  background: var(--red); border-radius: 50%; margin-top: 8px;
}
.article-body ol li { color: #555; font-size: .95rem; line-height: 1.7; margin-bottom: 10px; }
.article-body strong { color: var(--black); font-weight: 700; }

/* Pullquote */
.pullquote {
  border-left: 4px solid var(--red);
  background: rgba(221,25,26,.04);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.pullquote p {
  font-size: 1.1rem; font-style: italic; color: #333;
  font-weight: 500; margin: 0; line-height: 1.7;
}

/* Info box */
.info-box {
  background: #f8f8f8; border: 1px solid #e8e8e8;
  border-radius: 10px; padding: 24px 28px; margin: 28px 0;
}
.info-box h4 { font-size: .9rem; margin-bottom: 12px; color: var(--black); display: flex; align-items: center; gap: 8px; }
.info-box h4 i { color: var(--red); }
.info-box ul { margin: 0; }
.info-box ul li { font-size: .88rem; }

/* Article image */
.article-img {
  margin: 32px 0; border-radius: 10px; overflow: hidden;
}
.article-img img { width: 100%; height: 340px; object-fit: cover; }
.article-img figcaption { font-size: .78rem; color: #999; margin-top: 8px; text-align: center; }

/* Tags & Share */
.article-footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid #ebebeb;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tag {
  padding: 5px 14px; background: var(--gray-100);
  border-radius: 50px; font-size: .78rem; color: #666;
  transition: all .25s;
}
.article-tag:hover { background: var(--red); color: #fff; }
.share-row { display: flex; align-items: center; gap: 10px; }
.share-row span { font-size: .82rem; color: #999; font-weight: 600; }
.share-btn {
  width: 34px; height: 34px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff; transition: transform .25s;
}
.share-btn:hover { transform: translateY(-2px); }
.share-linkedin { background: #0077b5; }
.share-twitter  { background: #1da1f2; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }

/* Author box */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--gray-50); border-radius: 12px;
  padding: 28px; margin-top: 40px;
  border: 1px solid #ebebeb;
}
.author-avatar-lg {
  width: 64px; height: 64px; min-width: 64px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--red), #8b0000);
}
.author-box h4 { font-size: .95rem; margin-bottom: 2px; }
.author-box .role { color: var(--red); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.author-box p { font-size: .85rem; color: #666; margin: 0; line-height: 1.65; }

/* Related posts */
.related-posts { margin-top: 56px; }
.related-posts h3 { font-size: 1.2rem; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  border: 1px solid #ebebeb; border-radius: 10px; overflow: hidden;
  transition: all .3s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card-body { padding: 16px; }
.related-card-body .cat-tag { margin-bottom: 8px; }
.related-card-body h4 { font-size: .88rem; line-height: 1.4; margin-bottom: 6px; }
.related-card-body h4 a { color: var(--black); transition: color .3s; }
.related-card-body h4 a:hover { color: var(--red); }
.related-card-body span { font-size: .75rem; color: #999; }

/* ===== SIDEBAR (reuse from news.css) ===== */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .article-hero { min-height: 360px; }
  .article-hero-content { padding-top: 140px; padding-bottom: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-footer { flex-direction: column; align-items: flex-start; }
}
