.ns-laws-page {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  direction: rtl;
  background:
    radial-gradient(circle at top left, rgba(255, 221, 234, 0.92), transparent 32%),
    radial-gradient(circle at bottom right, rgba(240, 212, 221, 0.90), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fff7fb 45%, #fffdfd 100%);
}

.ns-laws-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.ns-laws-hero {
  text-align: center;
  margin-bottom: 34px;
}

.ns-laws-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(190, 140, 150, 0.22);
  color: #9f5d6c;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ns-laws-title {
  margin: 18px 0 10px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  color: #3f2430;
}

.ns-laws-subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 2;
  color: #6f5961;
}

.ns-laws-content {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(194, 161, 169, 0.18);
  box-shadow:
    0 24px 60px rgba(92, 55, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 28px;
}

.ns-laws-article {
  color: #3f2b32;
}

.ns-laws-h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: #41252d;
}

.ns-laws-h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #4a2a34;
}

.ns-laws-p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 2.05;
  color: #6f5961;
text-align:justify;
}

.ns-laws-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(208, 153, 170, 0), rgba(208, 153, 170, 0.65), rgba(208, 153, 170, 0));
  margin: 22px 0;
  border-radius: 999px;
}

.ns-laws-note {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 245, 249, 0.92));
  border: 1px solid rgba(224, 199, 205, 0.45);
}

.ns-laws-note-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3f6, #f4d8df);
  box-shadow: inset 0 1px 4px rgba(255,255,255,0.7);
  font-size: 20px;
}

.ns-laws-note-text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #6f5961;
  font-weight: 700;
}

@media (max-width: 992px) {
  .ns-laws-title {
    font-size: 38px;
  }
  .ns-laws-content {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  .ns-laws-page {
    padding: 20px 14px;
  }
  .ns-laws-title {
    font-size: 30px;
  }
  .ns-laws-subtitle {
    font-size: 14px;
    line-height: 1.9;
  }
  .ns-laws-content {
    border-radius: 22px;
    padding: 16px;
  }
  .ns-laws-h2 {
    font-size: 20px;
  }
}
/* ===== NORA STYLE - NUMBERED LIST (BOXED) ===== */

.ns-laws-ol{
  margin: 10px 0 0;
  padding: 18px 16px;
  list-style: none;
  counter-reset: ns-laws-counter;

  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,245,249,0.92));
  border: 1px solid rgba(224,199,205,0.55);

  box-shadow:
    0 20px 60px rgba(92,55,67,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

  display:flex;
  flex-direction:column;
  gap: 10px;
}

.ns-laws-ol > li{
  position: relative;
  padding-right: 44px;
  line-height: 2.1;
  color:#6f5961;
  font-weight: 800;
  font-size: 14px;
}

/* شماره حبابی */
.ns-laws-ol > li::before{
  counter-increment: ns-laws-counter;
  content: counter(ns-laws-counter);

  position:absolute;
  right: 0;
  top: 0.2em;

  width: 34px;
  height: 34px;
  border-radius: 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(135deg, rgba(216,176,140,0.35), rgba(139,94,60,0.14));
  border: 1px solid rgba(200,150,120,0.45);
  color:#7a4f2f;

  box-shadow: 0 14px 34px rgba(139,94,60,0.10);
  font-weight: 1000;
}

@media (max-width: 576px){
  .ns-laws-ol{
    padding: 14px 12px;
  }
  .ns-laws-ol > li{
    padding-right: 40px;
    font-size: 13px;
  }
}
