/* Shared article page styles */
.page-hero {
  position: relative;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.25;
}
.page-hero .tag {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  color: #c0001a;
  margin-bottom: 14px;
}
.breadcrumb {
  font-size: .8rem;
  color: #888;
  margin-bottom: 16px;
}
.breadcrumb a { color: #c0001a; }

.article-layout {
  padding: 72px 0 80px;
  background: #f7f7f7;
}
.article-layout .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-body {
  background: #fff;
  padding: 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.article-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 32px 0 14px;
  letter-spacing: .03em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  font-size: .95rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.article-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: .95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #c0001a;
}
.article-body .callout {
  background: #f0f0f0;
  border-left: 4px solid #c0001a;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: .95rem;
  color: #333;
  line-height: 1.75;
}
.article-featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 36px;
  filter: contrast(1.12) brightness(1.05) saturate(1.2) blur(0.5px);
}

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: #fff;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.sidebar-widget h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: .05em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c0001a;
}
.sidebar-widget a {
  display: block;
  font-size: .88rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}
.sidebar-widget a:hover { color: #c0001a; }
.sidebar-widget p { font-size: .9rem; color: #555; line-height: 1.7; margin-bottom: 14px; }
.sidebar-fb {
  background: #1877f2;
  color: #fff;
  padding: 28px;
  text-align: center;
}
.sidebar-fb h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: #fff;
  border: none;
  padding: 0;
}
.sidebar-fb p { color: rgba(255,255,255,.85); font-size: .88rem; line-height: 1.65; margin-bottom: 16px; }

@media (max-width: 900px) {
  .article-layout .container { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; }
}
@media (max-width: 600px) {
  .article-body { padding: 28px 20px; }
  .page-hero h1 { font-size: 1.7rem; }
}
