/* News listing & cards */
.news-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-block-end: 2.5rem; flex-wrap: wrap; gap: 1.2rem;
}
.news-toolbar .filter-bar { margin: 0; }
.news-search {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line); background: var(--paper);
  min-width: 240px;
}
.news-search svg { width: 16px; height: 16px; color: var(--muted-2); }
.news-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 0.92rem; color: var(--ink);
}
.news-featured {
  display: grid; grid-template-columns: 1.25fr 1fr;
  background: var(--paper); border: 1px solid var(--line);
  margin-block-end: 3rem; overflow: hidden;
  position: relative; min-height: 380px;
}
.news-featured::before {
  content: ""; position: absolute; inset: 0 auto 0 0;
  width: 4px; background: var(--gold); z-index: 2;
}
body[dir="rtl"] .news-featured::before { inset: 0 0 0 auto; }
.news-featured__media { background: center/cover no-repeat; min-height: 320px; }
.news-featured__body { padding: 2.8rem 2.6rem; display: flex; flex-direction: column; justify-content: center; }
.news-featured__meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-block-end: 1rem;
  font-family: var(--ff-en-ui); font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-featured__cat {
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; font-weight: 800;
}
.news-featured__date { color: var(--muted-2); }
.news-featured__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800;
  margin: 0 0 1rem; line-height: 1.25; color: var(--navy);
}
.news-featured__excerpt { color: var(--muted); line-height: 1.85; margin: 0 0 1.5rem; font-size: 1rem; }
.news-featured__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-weight: 700; font-size: 0.95rem;
  align-self: flex-start;
  padding-block: 0.8rem;
  border-block-end: 1px solid var(--gold);
}

.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: 0.25s;
  position: relative; overflow: hidden;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.news-card__media {
  aspect-ratio: 16 / 10;
  background: center/cover no-repeat;
  border-block-end: 1px solid var(--line);
  position: relative;
}
.news-card__cat {
  position: absolute; inset-block-start: 12px; inset-inline-start: 12px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-card__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.news-card__date {
  font-family: var(--ff-en-ui); font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--muted-2); text-transform: uppercase;
}
.news-card__title {
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
  margin: 0; line-height: 1.4;
}
.news-card__excerpt { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 0; flex: 1; }
.news-card__cta {
  font-size: 0.85rem; color: var(--gold); font-weight: 700;
  margin-block-start: 0.6rem; padding-block-start: 0.9rem;
  border-block-start: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.04em;
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  margin-block-start: 3rem;
}
.pagination__btn {
  width: 42px; height: 42px;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink); font-weight: 700;
  display: grid; place-items: center;
  cursor: pointer; transition: 0.2s; font: inherit;
}
.pagination__btn:hover { border-color: var(--gold); color: var(--gold); }
.pagination__btn.is-active { background: var(--navy); color: var(--gold-2); border-color: var(--navy); }
.pagination__arrow svg { width: 16px; height: 16px; }
body[dir="rtl"] .pagination__arrow svg { transform: scaleX(-1); }

/* Newsletter */
.newsletter {
  background: var(--navy); color: #fff;
  padding-block: 3.5rem;
  position: relative; overflow: hidden;
  border-block: 1px solid var(--gold);
}
.newsletter::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-deep));
  opacity: 0.6;
}
.newsletter__inner {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.newsletter h2 { font-size: 1.7rem; font-weight: 800; margin: 0.5rem 0; }
.newsletter p { color: rgba(255,255,255,0.78); margin: 0; }
.newsletter form {
  display: flex; gap: 0.5rem;
  background: var(--paper); padding: 0.5rem;
  border: 1px solid var(--gold);
}
.newsletter input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 0.8rem 1rem; font: inherit; font-size: 0.95rem; color: var(--ink);
}
.newsletter button {
  background: var(--gold); color: var(--navy);
  border: 0; padding: 0.85rem 1.5rem;
  font: inherit; font-weight: 800; cursor: pointer;
  letter-spacing: 0.02em; transition: 0.2s;
}
.newsletter button:hover { background: var(--gold-2); }

/* Article page */
.article-hero { padding-block: clamp(2.5rem, 5vw, 4rem); }
.article-hero__meta {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  font-family: var(--ff-en-ui); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-block-end: 1rem;
}
.article-hero__meta .cat { background: var(--gold); color: var(--navy); padding: 4px 12px; font-weight: 800; }
.article-hero__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.2; max-width: 28ch; color: #fff;
  margin: 0.5rem 0;
}
.article-cover {
  aspect-ratio: 21 / 9;
  background: center/cover no-repeat;
  border: 1px solid var(--gold);
  margin-block-end: 3rem;
}

.article-wrap {
  display: grid; grid-template-columns: 1fr 280px; gap: 4rem;
  align-items: start;
}
.article-body { font-size: 1.05rem; line-height: 1.95; color: var(--ink); max-width: 65ch; }
.article-body > p:first-child::first-letter {
  font-family: var(--ff-en); color: var(--gold);
  font-size: 4rem; font-weight: 600;
  float: inline-start; line-height: 0.9;
  margin-inline-end: 0.5rem; margin-block-start: 0.4rem;
}
.article-body p { margin: 0 0 1.4rem; }
.article-body h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  margin: 2.4rem 0 1rem; line-height: 1.3;
  padding-inline-start: 1rem; border-inline-start: 3px solid var(--gold);
}
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.8rem 2rem;
  background: var(--cream);
  border-inline-start: 4px solid var(--gold);
  font-family: var(--ff-en); font-style: italic;
  color: var(--navy); font-size: 1.2rem; line-height: 1.6;
}
.article-body ul { padding-inline-start: 1.4rem; margin: 0 0 1.4rem; }
.article-body li { margin-block: 0.4rem; color: var(--muted); }
.article-body li::marker { color: var(--gold); }
.article-body img { width: 100%; margin-block: 1.5rem; border: 1px solid var(--line); }

.article-aside {
  position: sticky; inset-block-start: 100px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.article-aside .panel {
  background: var(--cream); border: 1px solid var(--line);
  padding: 1.6rem;
}
.article-aside h4 {
  font-family: var(--ff-en); font-style: italic;
  color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em;
  margin: 0 0 1rem; text-transform: uppercase;
}
.article-aside .share { display: flex; gap: 0.5rem; }
.article-aside .share a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--navy); transition: 0.2s;
}
.article-aside .share a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.article-aside .related-list { list-style: none; padding: 0; margin: 0; }
.article-aside .related-list li { padding-block: 0.8rem; border-block-end: 1px solid var(--line); }
.article-aside .related-list li:last-child { border: 0; }
.article-aside .related-list a { color: var(--navy); font-weight: 700; font-size: 0.92rem; line-height: 1.5; }
.article-aside .related-list a:hover { color: var(--gold); }
.article-aside .related-list small { display: block; color: var(--muted-2); font-family: var(--ff-en-ui); font-size: 0.72rem; letter-spacing: 0.05em; margin-block-start: 4px; }

/* Home news block */
.home-news-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 2rem; margin-block-end: 3rem;
}
.home-news-head a { color: var(--gold); font-weight: 700; font-size: 0.95rem; display: inline-flex; gap: 0.4rem; align-items: center; }
.home-news-head a:hover { color: var(--gold-2); }

/* Constrain inline arrow/icon SVGs in link/CTA contexts (they have no intrinsic size). */
.news-card__cta svg,
.news-featured__cta svg,
.home-news-head a svg,
.article-aside .share a svg { width: 16px; height: 16px; flex-shrink: 0; }
body[dir="rtl"] .news-card__cta svg,
body[dir="rtl"] .news-featured__cta svg,
body[dir="rtl"] .home-news-head a svg { transform: scaleX(-1); }

@media (max-width: 960px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .home-news-head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .news-grid { grid-template-columns: 1fr; }
}