:root{
  --brand-red:#d3142a;
  --brand-green:#0a7c48;
  --ink:#121212;
  --border:#e8e8e8;
}

.news-hero{
  background:#fafafa;
  border-bottom:1px solid var(--border);
  padding:40px 0 16px;
}

.news-hero .section-title{
  margin-bottom:8px;
}

.news-hero p{
  margin:0;
  text-align:center;
  color:#555;
  font-size:14px;
}

.news-layout{
  max-width:840px;
  margin:0 auto;
  padding:40px 16px 72px;
}

.news-breadcrumb{
  font-size:13px;
  color:#777;
  margin-bottom:12px;
}

.news-breadcrumb a{
  text-decoration:none;
  color:inherit;
}

.news-breadcrumb a:hover{
  text-decoration:underline;
}

.news-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:#f3f3f3;
  color:#333;
  margin-bottom:10px;
}

.news-article-title{
  font-size:clamp(28px,3vw,36px);
  line-height:1.3;
  margin:0 0 10px;
  color:#000;
}

.news-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-size:13px;
  color:#666;
  margin-bottom:24px;
}

.news-meta time{
  font-weight:500;
}

.news-image{
  margin:0 0 24px;
  border-radius:14px;
  overflow:hidden;
  background:#f5f5f5;
}

.news-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.news-body{
  font-size:15.5px;
  line-height:1.9;
  color:#333;
  display:grid;
  gap:16px;
}

.news-body p{
  margin:0;
}

.news-body h2,
.news-body h3,
.news-body h4{
  margin:20px 0 8px;
  color:#000;
}

.news-body ul,
.news-body ol{
  margin:0 0 16px 20px;
  padding:0;
}

.news-body li{
  margin-bottom:4px;
}

.news-back-link{
  margin-top:40px;
  font-size:14px;
}

.news-back-link a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--brand-red);
  text-decoration:none;
  font-weight:600;
}

.news-back-link a:hover{
  text-decoration:underline;
}

.news-article--loading{
  opacity:.6;
}

/* Muted text (if not already defined somewhere else) */
.muted{
  color:#777;
  font-size:14px;
}

/* RTL tweaks */
html[dir="rtl"] .news-layout{
  text-align:right;
}

html[dir="rtl"] .news-body ul,
html[dir="rtl"] .news-body ol{
  margin-left:0;
  margin-right:20px;
}

html[dir="rtl"] .news-back-link a{
  flex-direction:row-reverse;
}
