/**
 * Disclaimer page — isolated (do not mix with home-standard.css).
 * Gold #c5a059 · Tajawal AR · Inter EN (local fonts; never Lato / Google Fonts).
 */
body[data-page="disclaimer"] .site-main {
  font-family: "Tajawal", system-ui, sans-serif;
  background: #fff;
  color: #1a1a1a;
  max-width: 100%;
  overflow-x: hidden;
}
html[lang="en"] body[data-page="disclaimer"] .site-main {
  font-family: "Inter", system-ui, sans-serif;
}

.ds-page {
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.ds-wrap {
  width: min(100% - 48px, 920px);
  margin-inline: auto;
  padding: 24px 0;
  box-sizing: border-box;
}

.ds-hero {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  overflow: hidden;
  border-bottom: 3px solid #c5a059;
}
.ds-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.ds-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(197, 160, 89, 0.38) 0%, rgba(197, 160, 89, 0.12) 55%, rgba(10, 10, 10, 0.35) 100%);
}
.ds-hero__inner {
  position: relative;
  z-index: 2;
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ds-crumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}
.ds-crumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.ds-crumb a:hover { color: #c5a059; }
.ds-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Tajawal", system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.05rem + 1.2vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  max-width: 20em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
html[lang="en"] .ds-hero h1 {
  font-family: "Inter", system-ui, sans-serif;
}
.ds-hero__rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 14px auto 18px;
  background: #c5a059;
  border-radius: 2px;
}
.ds-hero__lede {
  margin: 0;
  max-width: 42em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.8;
}

.ds-body {
  background: #fff;
}
.ds-block {
  background: #fff;
  border: 1px solid #efe6d6;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.ds-block + .ds-block {
  margin-top: 24px;
}
.ds-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #c5a059;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.4;
}
.ds-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ds-block li {
  position: relative;
  padding-inline-start: 1.15em;
  color: #333;
  font-size: 1.02rem;
  line-height: 1.85;
}
.ds-block li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5a059;
}

@media (min-width: 721px) {
  .ds-body .ds-wrap {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

@media (max-width: 720px) {
  .ds-wrap {
    width: 100%;
    padding: 16px;
  }
  .ds-body .ds-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 35px 35px 16px;
    box-sizing: border-box;
  }
  .ds-hero { min-height: 260px; }
  .ds-hero .ds-wrap,
  .ds-hero__inner {
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 24px;
    box-sizing: border-box;
  }
  .ds-hero h1,
  .ds-hero__lede { max-width: 100%; }
  .ds-hero h1 { font-size: 1.32rem; }
  .ds-block {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 16px;
    box-sizing: border-box;
  }
  .ds-block + .ds-block {
    margin-top: 16px;
  }
  .ds-block h2 { font-size: 1.12rem; }
}
