/* News Detail Page Styles aligned with About layout */

.page-hero.news-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero.news-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.page-hero.news-hero .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94,30,40,0.9) 0%, rgba(130,43,57,0.88) 60%, rgba(0,0,0,0.55) 100%);
}
.page-hero.news-hero .page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 960px;
  padding: 0 24px;
}
.page-hero.news-hero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 8px 0;
}
.page-hero.news-hero .hero-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.news-detail-section {
  background-color: #fff;
  padding: 80px 0;
  min-height: 100vh;
}

.news-detail-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.news-article {
  background: white;
}

.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-body p { margin: 0; }
.article-body img { width: 100%; border-radius: 10px; }

.article-attachments {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
}
.article-attachments h3 { margin-top: 0; }
.article-attachments ul { margin: 0; padding-left: 18px; }
.article-attachments li { margin-bottom: 8px; }

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}
.share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.share-btn {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
}
.share-btn:hover { background:#f3f4f6; }
.sidebar-image {
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }
}
