:root {
  --bg: #ffffff;
  --surface: #f4f8f4;
  --surface-strong: #eef3ee;
  --ink: #0c120d;
  --ink-soft: #536055;
  --line: rgba(12, 18, 13, 0.12);
  --line-strong: rgba(12, 18, 13, 0.22);
  --accent: #13824b;
  --accent-dark: #0e6539;
  --accent-soft: rgba(19, 130, 75, 0.12);
  --black: #070a08;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 12, 9, 0.12);
  --shadow-soft: 0 18px 42px rgba(8, 12, 9, 0.08);
  --radius: 26px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Alexandria", "Noto Naskh Arabic", sans-serif;
  text-rendering: optimizeLegibility;
}

body[dir="ltr"] {
  font-family: "Manrope", "Alexandria", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.site-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px;
}

.site-body > main {
  flex: 1 0 auto;
  display: block;
}

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 255px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -0.5rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.lang-switch a.is-active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: var(--white);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.hero-slider {
  position: relative;
  background: var(--bg);
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.hero-slider__track {
  position: relative;
  min-height: 660px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-slide__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.88fr);
  gap: 2.5rem;
  align-items: center;
  min-height: 660px;
  direction: ltr;
}

.hero-slide__copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding-inline-end: 0;
  text-align: center;
}

.hero-slide h1 {
  margin: 0;
  max-width: 9.8ch;
  font-size: clamp(2.75rem, 4.3vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-slide h1 em {
  display: block;
  font-style: normal;
  color: var(--accent);
}

.hero-slide__summary {
  max-width: 48ch;
  margin: 0.4rem 0 0;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-slide__media {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__media::before {
  content: "";
  position: absolute;
  inset: 1.2rem auto 1.2rem -1rem;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.hero-slide__frame {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  height: clamp(420px, 38vw, 540px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  box-shadow: var(--shadow);
}

.hero-slide__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider__footer {
  display: grid;
  gap: 1.7rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.hero-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-slider__nav {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.88fr);
  direction: ltr;
  gap: 2.5rem;
  margin-top: -8.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.hero-slider__dots--inline {
  grid-column: 1;
  justify-self: center;
  align-self: start;
}

.hero-slider__dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 27, 19, 0.18);
  transition: transform var(--transition), background var(--transition), width var(--transition);
}

.hero-slider__dot.is-active {
  width: 52px;
  background: var(--accent);
}

.hero-slider__pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-pill {
  display: grid;
  gap: 0.55rem;
  padding: 1.45rem 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.hero-pill strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-pill span {
  font-size: 0.88rem;
  line-height: 1.75;
}

.hero-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 130, 75, 0.6);
  background: rgba(19, 130, 75, 0.12);
}

.home-pages {
  padding-top: 3.2rem;
}

.home-pages__strip {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 2.25rem 2rem;
  margin-bottom: 2.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.08), rgba(19, 130, 75, 0.03));
  border: 1px solid rgba(19, 130, 75, 0.16);
  border-radius: 34px;
}

.home-pages__line {
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.home-pages__eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-pages__strip h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-pages__lead {
  margin: 0;
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.95;
}

.home-pages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-page-card {
  display: grid;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(15, 27, 19, 0.08);
  box-shadow: 0 24px 54px rgba(12, 18, 14, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 130, 75, 0.26);
  box-shadow: 0 30px 70px rgba(12, 18, 14, 0.12);
}

.home-page-card__media {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #0f1712;
}

.home-page-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 420ms ease;
}

.home-page-card:hover .home-page-card__media img {
  transform: scale(1.04);
}

.home-page-card__body {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 1.6rem 1.45rem 1.8rem;
  text-align: center;
}

.home-page-card__line {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.home-page-card__body h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-page-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.9;
}

.section {
  padding: 6rem 0;
}

.section--overview {
  padding-top: 7rem;
}

.section-grid {
  display: grid;
  gap: 2.5rem;
}

.section-grid--overview,
.section-grid--about {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.page-hero h1,
.article-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--accent);
}

.section-lead {
  margin: 1.4rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.95;
}

.section-copy p:last-child,
.page-hero__copy p:last-child {
  margin-bottom: 0;
}

.section-copy p,
.page-hero__copy p,
.feature-card__body p,
.news-card__body p,
.news-showcase__body p,
.article-body p,
.media-card__body p,
.contact-panel p {
  color: var(--ink-soft);
  line-height: 1.95;
}

.overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.overview-panel__copy {
  align-self: center;
  padding: 1rem;
}

.overview-panel__copy h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.overview-panel img,
.page-hero__media img,
.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.quote-band {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
}

.quote-band__shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.quote-band__mark {
  width: 4px;
  min-height: 120px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.quote-band blockquote {
  margin: 0;
}

.quote-band p {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.quote-band footer {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center > div {
  margin-inline: auto;
}

.section-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.news-card,
.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-card--open {
  background: var(--surface);
}

.media-card__link {
  display: block;
  height: 100%;
}

.feature-card__media,
.news-card__image,
.media-card__image {
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
}

.feature-card__media img,
.news-card__image img,
.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.feature-card:hover img,
.news-card:hover img,
.media-card:hover img,
.news-showcase__lead:hover img,
.news-brief:hover img {
  transform: scale(1.04);
}

.feature-card__body,
.news-card__body,
.media-card__body {
  padding: 1.4rem;
}

.feature-card__body h3,
.news-card__body h3,
.news-showcase__body h3,
.media-card__body h2,
.media-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  line-height: 1.35;
}

.feature-card__body a,
.news-card__body a,
.news-brief a {
  color: var(--accent-dark);
  font-weight: 700;
}

.news-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(280px, 0.74fr);
  gap: 1.35rem;
}

.news-showcase__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  background: var(--surface);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.news-showcase__lead--page {
  border: 1px solid var(--line);
}

.news-showcase__image {
  min-height: 100%;
  overflow: hidden;
}

.news-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-showcase__body {
  padding: 2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  margin: 0 0 0.95rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-showcase__stack {
  display: grid;
  gap: 1rem;
}

.news-brief {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.news-brief img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  border-radius: 18px;
}

.news-brief h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.media-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  padding: 1.6rem;
  background: var(--surface);
  border-radius: 26px;
  border-top: 3px solid var(--accent);
}

.timeline-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.timeline-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.contact-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel {
  width: 100%;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact-panel p,
.contact-details {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel .section-label {
  justify-content: center;
}

.contact-details {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  justify-items: stretch;
}

.contact-details li {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-align: center;
}

.contact-details strong {
  color: var(--white);
}

.contact-socials {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-socials li {
  display: flex;
}

.contact-socials a,
.contact-socials span {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.contact-socials a:hover {
  transform: translateY(-2px);
  background: rgba(19, 130, 75, 0.18);
  border-color: rgba(19, 130, 75, 0.42);
}

.contact-socials .is-disabled {
  color: rgba(255, 255, 255, 0.46);
}

.flash {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 600;
}

.flash--success {
  background: rgba(19, 130, 75, 0.12);
  color: var(--accent-dark);
}

.flash--error {
  background: rgba(150, 31, 31, 0.12);
  color: #8e2020;
}

.site-footer {
  margin-top: auto;
  padding: 0.85rem 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 0.7rem;
}

.back-to-top {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(19, 130, 75, 0.22);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
  box-shadow: 0 18px 40px rgba(19, 130, 75, 0.28);
}

.footer-copy {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-copy__name {
  color: var(--white);
}

.footer-copy__divider {
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.footer-copy__rights {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 3rem 0 4.5rem;
  background: var(--black);
  color: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 2rem;
  align-items: center;
  direction: ltr;
}

.page-hero__copy--single {
  max-width: 740px;
}

.page-hero__copy--media {
  max-width: 540px;
  justify-self: center;
  text-align: center;
}

.page-hero__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--media {
  padding-bottom: 3.4rem;
}

.page-hero--media .page-hero__grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.media-hero__title {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5vw, 4.45rem);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.media-hero__summary {
  max-width: 33rem;
  margin-top: 1.35rem;
  margin-inline: auto;
  font-size: 1.1rem;
  text-align: center;
  text-wrap: pretty;
}

.page-hero__copy--media .section-label {
  justify-content: center;
  margin-inline: auto;
}

.page-hero__media img {
  min-height: 430px;
  box-shadow: var(--shadow);
}

.page-hero--media .page-hero__media img {
  min-height: 560px;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.image-stack img:first-child {
  min-height: 380px;
}

.image-stack img:last-child {
  margin-top: 3rem;
  min-height: 320px;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-list::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 122px;
  width: 2px;
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.18), rgba(19, 130, 75, 0.9), rgba(19, 130, 75, 0.18));
}

.timeline-list__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-list__year {
  position: relative;
  padding-top: 0.1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.timeline-list__year::after {
  content: "";
  position: absolute;
  inset-inline-end: -35px;
  inset-block-start: 0.65rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(19, 130, 75, 0.12);
}

.timeline-list__content {
  padding: 1.3rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-list__content p {
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.media-accordion {
  display: grid;
  gap: 1rem;
}

.media-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.media-entry__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.45rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.media-entry__accent {
  width: 4px;
  min-height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(19, 130, 75, 0.18));
}

.media-entry__header {
  display: grid;
  gap: 0;
}

.media-entry__header strong {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.media-entry__icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
}

.media-entry__icon::before,
.media-entry__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.media-entry__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.media-entry.is-open .media-entry__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.media-entry__panel {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.media-entry__body {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
}

.media-entry__content {
  display: grid;
  gap: 0.9rem;
}

.media-entry__cover,
.media-entry__content {
  padding: 1rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.media-entry__cover img {
  width: 100%;
  min-height: 380px;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.media-entry__content p {
  margin: 0 0 0.95rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

.media-entry__content p:last-child {
  margin-bottom: 0;
}

.media-card.is-hidden {
  display: none;
}

.media-entry.is-hidden {
  display: none;
}

.page-hero__copy--initiatives {
  max-width: 640px;
  justify-self: center;
  text-align: center;
}

.page-hero__copy--initiatives .section-label {
  justify-content: center;
  margin-inline: auto;
}

.page-hero--initiatives .page-hero__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.initiatives-hero__title {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.03;
  text-align: center;
  text-wrap: balance;
}

.initiatives-hero__summary {
  max-width: 34rem;
  margin: 1.35rem auto 0;
  font-size: 1.1rem;
  line-height: 1.95;
  text-align: center;
  text-wrap: pretty;
}

.initiative-accordion {
  display: grid;
  gap: 1rem;
}

.initiative-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.initiative-entry__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.45rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.initiative-entry__accent {
  width: 4px;
  min-height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(19, 130, 75, 0.18));
}

.initiative-entry__header {
  text-align: center;
}

.initiative-entry__header strong {
  display: block;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.2;
  text-wrap: balance;
}

.initiative-entry__icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
}

.initiative-entry__icon::before,
.initiative-entry__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.initiative-entry__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.initiative-entry.is-open .initiative-entry__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.initiative-entry__panel {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.initiative-entry__body {
  padding: 1.4rem;
}

.initiative-entry__stack {
  display: grid;
  gap: 1rem;
}

.initiative-entry__title-bar,
.initiative-entry__summary-bar,
.initiative-entry__details,
.initiative-entry__video,
.initiative-entry__gallery {
  padding: 1.15rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.initiative-entry__title-bar {
  background: linear-gradient(180deg, #112116, #0b0d0c);
  color: var(--white);
}

.initiative-entry__title-bar h2,
.initiative-entry__summary-bar p,
.initiative-entry__details p {
  margin: 0;
  text-align: center;
}

.initiative-entry__title-bar h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.25;
  text-wrap: balance;
}

.initiative-entry__summary-bar {
  border-color: rgba(19, 130, 75, 0.22);
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.1), rgba(19, 130, 75, 0.04));
}

.initiative-entry__summary-bar p,
.initiative-entry__details p {
  color: var(--ink-soft);
  line-height: 1.95;
  text-wrap: pretty;
}

.initiative-entry__details {
  display: grid;
  gap: 0.85rem;
}

.initiative-entry__cover {
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.initiative-entry__cover img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.initiative-entry__cover:hover img,
.initiative-entry__gallery a:hover img {
  transform: scale(1.03);
}

.initiative-entry__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.initiative-entry__gallery a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.initiative-entry__gallery img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.initiative-entry__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.initiative-entry__video video,
.initiative-entry__video iframe {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--black);
}

.initiative-entry__video video {
  min-height: 360px;
}

.initiative-entry__video iframe {
  aspect-ratio: 16 / 9;
}

.news-accordion {
  display: grid;
  gap: 1rem;
}

.news-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.news-entry__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.45rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.news-entry__accent {
  width: 4px;
  min-height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(19, 130, 75, 0.18));
}

.news-entry__header {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.news-entry__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.4rem;
  color: var(--accent-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.news-entry__header strong {
  display: block;
  max-width: 26ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.news-entry__icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
}

.news-entry__icon::before,
.news-entry__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.news-entry__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.news-entry.is-open .news-entry__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.news-entry__panel {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.news-entry__body {
  padding: 1.4rem;
}

.news-entry__stack {
  display: grid;
  gap: 1rem;
}

.news-entry__title-bar,
.news-entry__summary-bar,
.news-entry__details,
.news-entry__video,
.news-entry__gallery {
  padding: 1.15rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-entry__title-bar {
  background: linear-gradient(180deg, #112116, #0b0d0c);
  color: var(--white);
}

.news-entry__title-bar h2,
.news-entry__summary-bar p,
.news-entry__details p {
  margin: 0;
  text-align: center;
}

.news-entry__title-bar h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
  line-height: 1.24;
  text-wrap: balance;
}

.news-entry__summary-bar {
  border-color: rgba(19, 130, 75, 0.22);
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.1), rgba(19, 130, 75, 0.04));
}

.news-entry__summary-bar p,
.news-entry__details p {
  color: var(--ink-soft);
  line-height: 1.95;
  text-wrap: pretty;
}

.news-entry__details {
  display: grid;
  gap: 0.85rem;
}

.news-entry__cover {
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.news-entry__cover img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-entry__cover:hover img,
.news-entry__gallery a:hover img {
  transform: scale(1.03);
}

.news-entry__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.news-entry__gallery a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.news-entry__gallery img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.news-entry__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.news-entry__video video,
.news-entry__video iframe {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--black);
}

.news-entry__video video {
  min-height: 360px;
}

.news-entry__video iframe {
  aspect-ratio: 16 / 9;
}

.section--page-banner {
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}

.section--news-directory {
  padding-top: 0.55rem;
}

.section--article-story {
  padding-top: 1rem;
}

.section--related-news {
  padding-top: 2rem;
}

.page-title-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.05rem 1.4rem;
  border: 1px solid rgba(19, 130, 75, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.1), rgba(19, 130, 75, 0.04));
  box-shadow: var(--shadow-soft);
}

.page-title-band h1 {
  margin: 0;
  color: var(--accent-dark);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.page-title-band h2 {
  margin: 0;
  color: var(--accent-dark);
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.news-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.news-tile {
  min-width: 0;
}

.news-tile__link {
  display: grid;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.news-tile__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.08 / 0.9;
}

.news-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-tile:hover .news-tile__image img {
  transform: scale(1.04);
}

.news-tile__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  text-align: center;
}

.news-tile__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.2rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-tile__title {
  display: block;
  margin-inline: auto;
  max-width: 16ch;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
  line-height: 1.24;
  text-wrap: balance;
}

.news-tile__summary {
  display: block;
  margin-inline: auto;
  max-width: 32ch;
  color: var(--ink-soft);
  line-height: 1.9;
  text-wrap: pretty;
}

.meta-row--center {
  justify-content: center;
  text-align: center;
}

.article-story {
  display: grid;
  gap: 1rem;
  max-width: 1080px;
}

.back-link--page {
  justify-self: center;
  margin-bottom: 0.1rem;
  color: var(--accent-dark);
}

.article-story__title-bar,
.article-story__summary-bar,
.article-story__details,
.article-story__gallery,
.article-story__video {
  padding: 1.2rem;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article-story__title-bar {
  background: linear-gradient(180deg, #112116, #0b0d0c);
  color: var(--white);
}

.article-story__title-bar h1,
.article-story__summary-bar p,
.article-story__details p {
  margin: 0;
  text-align: center;
}

.article-story__title-bar h1 {
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1.18;
  text-wrap: balance;
}

.article-story__summary-bar {
  border-color: rgba(19, 130, 75, 0.22);
  background: linear-gradient(180deg, rgba(19, 130, 75, 0.1), rgba(19, 130, 75, 0.04));
}

.article-story__summary-bar p,
.article-story__details p {
  color: var(--ink-soft);
  line-height: 1.95;
  text-wrap: pretty;
}

.article-story__details {
  display: grid;
  gap: 0.9rem;
}

.article-story__cover {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.article-story__cover img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-story__cover:hover img,
.article-story__gallery a:hover img {
  transform: scale(1.03);
}

.article-story__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.article-story__gallery a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.article-story__gallery img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.article-story__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.article-story__video video,
.article-story__video iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  background: var(--black);
}

.article-story__video video {
  min-height: 360px;
}

.article-story__video iframe {
  aspect-ratio: 16 / 9;
}

.article-hero {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--black), #141914);
  color: var(--white);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 2rem;
  align-items: center;
  direction: ltr;
}

body[dir="rtl"] .page-hero__copy,
body[dir="rtl"] .article-hero__copy,
body[dir="rtl"] .article-body,
body[dir="rtl"] .article-sidebar,
body[dir="rtl"] .contact-shell {
  direction: rtl;
  text-align: right;
}

body[dir="ltr"] .page-hero__copy,
body[dir="ltr"] .article-hero__copy,
body[dir="ltr"] .article-body,
body[dir="ltr"] .article-sidebar,
body[dir="ltr"] .contact-shell {
  direction: ltr;
  text-align: left;
}

body[dir="rtl"] .hero-slide__copy {
  direction: rtl;
  text-align: center;
}

body[dir="ltr"] .hero-slide__copy {
  direction: ltr;
  text-align: center;
}

.page-home .quote-band {
  padding: 4rem 0 3.4rem;
}

.page-home .quote-band__shell {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.page-home .quote-band__mark {
  width: 72px;
  min-height: 4px;
}

.page-home .quote-band p,
.page-home .quote-band footer {
  margin-inline: auto;
}

.page-home .home-preview-section {
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}

.page-home .home-preview-body {
  padding-top: 0;
  padding-bottom: 2.8rem;
}

.page-home .home-preview-body + .home-preview-section {
  padding-top: 0.8rem;
}

.page-about .page-hero__copy,
.page-about .section-copy,
.page-about .section-heading,
.page-about .feature-card__body,
.page-about .timeline-list__content,
.page-about .timeline-list__year,
.page-about .quote-band blockquote {
  text-align: center;
}

body[dir="rtl"] .page-about .page-hero__copy,
body[dir="ltr"] .page-about .page-hero__copy {
  text-align: center;
}

.page-about .page-hero__copy,
.page-about .section-copy {
  justify-self: center;
  margin-inline: auto;
}

.page-about .section-label,
.page-about .page-hero__copy .section-label {
  justify-content: center;
  margin-inline: auto;
}

.page-about .page-hero__copy p,
.page-about .section-copy p,
.page-about .timeline-list__content p,
.page-about .feature-card__body p,
.page-about .quote-band p {
  margin-inline: auto;
}

.page-about .section-heading {
  justify-content: center;
}

.page-about .section-heading > div {
  margin-inline: auto;
}

.page-about .quote-band__shell {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.page-about .quote-band__mark {
  width: 72px;
  min-height: 4px;
}

.page-initiatives .page-hero__copy,
.page-initiatives .section-heading,
.page-initiatives .initiative-entry__header,
.page-initiatives .initiative-entry__details,
.page-initiatives .initiative-entry__summary-bar,
.page-initiatives .initiative-entry__title-bar {
  text-align: center;
}

body[dir="rtl"] .page-initiatives .page-hero__copy,
body[dir="ltr"] .page-initiatives .page-hero__copy {
  text-align: center;
}

.page-initiatives .page-hero__copy,
.page-initiatives .section-heading > div {
  justify-self: center;
  margin-inline: auto;
}

.page-initiatives .section-label {
  justify-content: center;
  margin-inline: auto;
}

.page-news .news-entry__header,
.page-news .news-entry__details,
.page-news .news-entry__summary-bar,
.page-news .news-entry__title-bar {
  text-align: center;
}

.article-hero__media img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.article-hero__excerpt {
  max-width: 56ch;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.article-body {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.article-body p {
  margin: 0 0 1.3rem;
  font-size: 1.06rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.article-sidebar__card {
  padding: 1.4rem;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.article-sidebar__card h2,
.article-sidebar__card h3 {
  margin: 0 0 0.8rem;
}

.article-sidebar__card a {
  display: block;
  margin-top: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hero-slide__grid,
  .page-hero__grid,
  .article-hero__grid,
  .section-grid--overview,
  .section-grid--about,
  .article-layout,
  .news-showcase {
    grid-template-columns: 1fr;
  }

  .hero-slide__media {
    min-height: auto;
  }

  .page-hero--media .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero--initiatives .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-slide__frame img,
  .page-hero__media img,
  .article-hero__media img {
    min-height: 420px;
  }

  .media-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .home-pages__grid,
  .news-grid,
  .news-directory__grid,
  .timeline-strip,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav,
  .lang-switch {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .lang-switch {
    display: flex;
  }

  .site-header.is-open .header-shell {
    grid-template-columns: auto auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0 0.4rem;
  }

  .site-header.is-open .lang-switch {
    grid-column: 1 / -1;
    padding-bottom: 1rem;
  }

  .hero-slider__track,
  .hero-slide__grid {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    transform: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-slide__grid {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .hero-slide__frame {
    max-width: 520px;
    height: clamp(360px, 56vw, 470px);
    clip-path: none;
  }

  .hero-slider__nav {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: -3.8rem;
    margin-bottom: 0.8rem;
  }

  .hero-slider__pills {
    grid-template-columns: 1fr;
  }

  .overview-panel,
  .news-showcase__lead,
  .news-brief {
    grid-template-columns: 1fr;
  }

  .timeline-list::before,
  .timeline-list__year::after {
    display: none;
  }

  .timeline-list__item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .initiative-entry__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-entry__gallery,
  .article-story__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-body {
    padding-top: 74px;
  }

  .header-shell {
    min-height: 74px;
  }

  .section,
  .quote-band,
  .page-hero,
  .article-hero {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .hero-slider {
    padding-top: 1rem;
  }

  .hero-slide h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .hero-slider__nav {
    margin-top: -1rem;
    margin-bottom: 0.2rem;
  }

  .media-hero__title {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .initiatives-hero__title {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-slide__summary,
  .section-lead,
  .article-body p,
  .news-tile__summary,
  .article-story__details p {
    font-size: 1rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slide__frame img,
  .page-hero__media img,
  .article-hero__media img {
    min-height: 300px;
  }

  .hero-slide__frame {
    max-width: 100%;
    height: clamp(280px, 68vw, 360px);
  }

  .home-pages {
    padding-top: 3.6rem;
  }

  .home-pages__strip {
    padding: 1.8rem 1.2rem;
    border-radius: 26px;
  }

  .home-pages__strip h2 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .feature-grid,
  .home-pages__grid,
  .news-grid,
  .news-directory__grid,
  .timeline-strip,
  .media-grid,
  .media-grid--compact {
    grid-template-columns: 1fr;
  }

  .initiative-entry__gallery {
    grid-template-columns: 1fr;
  }

  .news-entry__gallery,
  .article-story__gallery {
    grid-template-columns: 1fr;
  }

  .initiative-entry__cover img,
  .initiative-entry__video video {
    min-height: 260px;
  }

  .news-entry__cover img,
  .news-entry__video video,
  .article-story__cover img,
  .article-story__video video {
    min-height: 260px;
  }

  .contact-panel,
  .article-body {
    padding: 1.35rem;
  }

  .contact-shell,
  .contact-socials {
    grid-template-columns: 1fr;
  }

  .quote-band p {
    font-size: 1.5rem;
  }

  .overview-panel {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
