/* ==========================================================
   Mawaqeeti — City Prayer Page (Modern, Safe, Responsive)
   File: public/css/city-prayer.css
   Scope: ONLY the city prayer page (.city-page)
   Supports: RTL/LTR + Light/Dark
   ========================================================== */

/* -----------------------------
   1) Base Tokens (Safe)
------------------------------ */
.city-page {
  --cp-bg: #f8fafc;
  --cp-surface: rgba(255, 255, 255, 0.92);
  --cp-surface-2: rgba(255, 255, 255, 0.78);
  --cp-border: rgba(15, 23, 42, 0.10);
  --cp-border-2: rgba(15, 23, 42, 0.14);
  --cp-text: #0f172a;
  --cp-muted: rgba(15, 23, 42, 0.70);
  --cp-muted-2: rgba(15, 23, 42, 0.55);
  --cp-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --cp-shadow-2: 0 6px 18px rgba(15, 23, 42, 0.08);

  --cp-accent: #38bdf8;
  --cp-accent-2: rgba(56, 189, 248, 0.18);
  --cp-accent-3: rgba(56, 189, 248, 0.10);

  --cp-radius: 18px;
  --cp-radius-sm: 12px;

  --cp-pad: 18px;
  --cp-gap: 14px;

  background: transparent;
  color: var(--cp-text);
}

/* Dark theme hook (works with your existing body theme-dark) */
body.theme-dark .city-page {
  --cp-bg: rgba(2, 6, 23, 0.0);
  --cp-surface: rgba(2, 6, 23, 0.55);
  --cp-surface-2: rgba(2, 6, 23, 0.42);
  --cp-border: rgba(148, 163, 184, 0.16);
  --cp-border-2: rgba(148, 163, 184, 0.22);
  --cp-text: rgba(226, 232, 240, 0.92);
  --cp-muted: rgba(226, 232, 240, 0.72);
  --cp-muted-2: rgba(226, 232, 240, 0.56);
  --cp-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
  --cp-shadow-2: 0 8px 22px rgba(0, 0, 0, 0.25);

  --cp-accent: #38bdf8;
  --cp-accent-2: rgba(56, 189, 248, 0.16);
  --cp-accent-3: rgba(56, 189, 248, 0.10);
}

/* -----------------------------
   2) Layout & Spacing
------------------------------ */
.city-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 14px 34px;
}

@media (min-width: 768px) {
  .city-page {
    padding: 28px 18px 44px;
  }
}

/* -----------------------------
   3) Card System (Scoped)
------------------------------ */
.city-page .card {
  background: linear-gradient(180deg, var(--cp-surface), var(--cp-surface-2));
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  box-shadow: var(--cp-shadow-2);
  padding: var(--cp-pad);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.city-page .card + .card {
  margin-top: 14px;
}

/* -----------------------------
   4) Buttons (Scoped)
------------------------------ */
.city-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--cp-text);
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

body.theme-dark .city-page .btn {
  background: rgba(2, 6, 23, 0.35);
}

.city-page .btn:hover {
  transform: translateY(-1px);
  border-color: var(--cp-border-2);
  box-shadow: var(--cp-shadow-2);
}

.city-page .btn:active {
  transform: translateY(0);
}

.city-page .btn-sm {
  padding: 9px 12px;
  font-size: 13px;
}

.city-page .btn-toggle {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, rgba(56,189,248,0.18), rgba(56,189,248,0.08));
}

/* -----------------------------
   5) HERO (Modern)
------------------------------ */
.city-hero-card {
  position: relative;
  overflow: hidden;
}

.city-hero-card::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto -60px;
  height: 220px;
  background: radial-gradient(circle at 20% 30%, var(--cp-accent-2), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(15, 23, 42, 0.06), transparent 55%);
  pointer-events: none;
}

body.theme-dark .city-hero-card::before {
  background: radial-gradient(circle at 20% 30%, var(--cp-accent-2), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.city-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .city-hero-inner {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: stretch;
    gap: 18px;
  }
}

/* Breadcrumb */
.city-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--cp-muted);
  margin-bottom: 10px;
}

.city-breadcrumb-link {
  color: var(--cp-muted);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color .15s ease, color .15s ease;
}

.city-breadcrumb-link:hover {
  color: var(--cp-text);
  border-color: var(--cp-border-2);
}

.city-breadcrumb-sep {
  opacity: .7;
}

.city-breadcrumb-current {
  color: var(--cp-text);
  font-weight: 800;
}

.city-title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: -0.2px;
}

@media (min-width: 768px) {
  .city-title { font-size: 28px; }
}

.city-subtitle {
  margin: 0 0 12px 0;
  color: var(--cp-muted);
  line-height: 1.7;
  font-size: 14px;
}

@media (min-width: 768px) {
  .city-subtitle { font-size: 15px; }
}

.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.60);
  color: var(--cp-muted);
  font-size: 13px;
}

body.theme-dark .city-meta span {
  background: rgba(2, 6, 23, 0.30);
}

.city-meta strong {
  color: var(--cp-text);
  font-weight: 900;
}

/* Date Card */
.city-hero-date {
  display: flex;
  height: 100%;
}

.city-date-card {
  width: 100%;
  border-radius: var(--cp-radius);
  border: 1px solid rgba(56, 189, 248, 0.30);
  background: linear-gradient(180deg, rgba(56,189,248,0.14), rgba(255,255,255,0.55));
  box-shadow: var(--cp-shadow-2);
  padding: 14px;
}

body.theme-dark .city-date-card {
  background: linear-gradient(180deg, rgba(56,189,248,0.12), rgba(2,6,23,0.25));
}

.city-date-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 10px 10px;
  border-radius: 12px;
}

.city-date-row + .city-date-row {
  margin-top: 6px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body.theme-dark .city-date-row + .city-date-row {
  border-top: 1px solid rgba(226, 232, 240, 0.08);
}

.city-date-label {
  color: var(--cp-muted);
  font-weight: 800;
  font-size: 13px;
}

.city-date-value {
  color: var(--cp-text);
  font-weight: 900;
  font-size: 13px;
}

/* -----------------------------
   6) Row: Current time + Next prayer
------------------------------ */
.city-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 900px) {
  .city-row {
    grid-template-columns: 1fr 1fr;
  }
}

.city-time-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .city-time-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.city-time-label {
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--cp-text);
  font-size: 14px;
}

.city-time-value {
  font-size: 28px;
  letter-spacing: 0.6px;
  font-weight: 900;
  margin-bottom: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  width: fit-content;
}

body.theme-dark .city-time-value {
  background: rgba(2, 6, 23, 0.30);
}

.city-time-note {
  color: var(--cp-muted-2);
  font-size: 12.5px;
  line-height: 1.7;
}

.city-time-actions {
  display: grid;
  gap: 10px;
}

.city-next-card .city-section-title {
  margin: 0 0 10px 0;
}

.city-section-title {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  margin: 0 0 12px 0;
  color: var(--cp-text);
}

.city-section-note {
  color: var(--cp-muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.city-next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .city-next-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.city-next-item {
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

body.theme-dark .city-next-item {
  background: rgba(2, 6, 23, 0.28);
}

.city-next-label {
  color: var(--cp-muted);
  font-size: 12.5px;
  font-weight: 800;
}

.city-next-value {
  font-size: 15px;
  font-weight: 950;
  color: var(--cp-text);
}

.city-next-countdown {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 0.8px;
  color: var(--cp-text);
  padding: 8px 10px;
  width: fit-content;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(56,189,248,0.14), rgba(56,189,248,0.06));
  border: 1px solid rgba(56,189,248,0.22);
}

/* -----------------------------
   7) Tables (Modern)
------------------------------ */
.city-table-wrapper {
  width: 100%;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
}

body.theme-dark .city-table-wrapper {
  background: rgba(2, 6, 23, 0.25);
}

.city-prayer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 520px;
}

.city-prayer-table thead th {
  text-align: start;
  font-size: 12.5px;
  padding: 12px 12px;
  color: var(--cp-muted);
  font-weight: 900;
  background: rgba(56, 189, 248, 0.10);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 2;
}

body.theme-dark .city-prayer-table thead th {
  border-bottom: 1px solid rgba(226, 232, 240, 0.10);
}

.city-prayer-table tbody td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 13.5px;
  color: var(--cp-text);
}

body.theme-dark .city-prayer-table tbody td {
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.city-prayer-table tbody tr:hover td {
  background: rgba(56, 189, 248, 0.06);
}

.city-row-today td {
  background: rgba(56, 189, 248, 0.10) !important;
  font-weight: 900;
}

/* Time cells */
.pt-time {
  font-weight: 900;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* -----------------------------
   8) Tabs (Gregorian / Hijri)
------------------------------ */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tab-btn {
  appearance: none;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--cp-muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease;
}

body.theme-dark .tab-btn {
  background: rgba(2, 6, 23, 0.25);
}

.tab-btn:hover {
  transform: translateY(-1px);
  border-color: var(--cp-border-2);
  color: var(--cp-text);
}

.tab-btn.active {
  color: var(--cp-text);
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, rgba(56,189,248,0.16), rgba(56,189,248,0.08));
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* -----------------------------
   9) City Info Section (Grid)
------------------------------ */
.city-info-header-title {
  margin: 0 0 8px 0;
  font-weight: 1000;
  font-size: 16px;
}

@media (min-width: 768px) {
  .city-info-header-title { font-size: 18px; }
}

.city-info-header-subtitle {
  margin: 0 0 14px 0;
  color: var(--cp-muted);
  line-height: 1.8;
  font-size: 13.5px;
}

.city-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 680px) {
  .city-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1040px) {
  .city-info-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.city-info-card {
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

body.theme-dark .city-info-card {
  background: rgba(2, 6, 23, 0.25);
}

.city-info-label {
  color: var(--cp-muted);
  font-size: 12.5px;
  font-weight: 900;
}

.city-info-value {
  color: var(--cp-text);
  font-size: 13.5px;
  font-weight: 950;
  line-height: 1.6;
}

.city-info-link {
  color: var(--cp-text);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(56, 189, 248, 0.55);
}

.city-info-link:hover {
  border-bottom-style: solid;
}

.city-info-description {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cp-border);
  color: var(--cp-muted);
  line-height: 1.9;
  font-size: 14px;
}

.city-info-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(180deg, rgba(56,189,248,0.14), rgba(56,189,248,0.06));
}

.city-info-timer-text {
  color: var(--cp-muted);
  font-size: 12.5px;
  font-weight: 800;
  margin-inline-start: 8px;
}

/* -----------------------------
   10) Other Cities (Tags)
------------------------------ */
.city-other-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.city-other-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: var(--cp-text);
  font-weight: 900;
  font-size: 13px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

body.theme-dark .city-other-tag {
  background: rgba(2, 6, 23, 0.25);
}

.city-other-tag:hover {
  transform: translateY(-1px);
  border-color: var(--cp-border-2);
  background: rgba(56, 189, 248, 0.08);
}

.city-other-tag-hidden {
  display: none;
}

.city-other-more-btn {
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, rgba(56,189,248,0.16), rgba(56,189,248,0.08));
  font-weight: 1000;
  cursor: pointer;
  color: var(--cp-text);
}

/* -----------------------------
   11) Share Buttons
------------------------------ */
.share-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .share-buttons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.share-btn-with-icon .share-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-btn-whatsapp {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, rgba(34,197,94,0.12), rgba(255,255,255,0.55));
}

body.theme-dark .share-btn-whatsapp {
  background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(2,6,23,0.25));
}

.share-btn-x {
  border-color: rgba(15, 23, 42, 0.20);
  background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(255,255,255,0.55));
}

body.theme-dark .share-btn-x {
  border-color: rgba(226, 232, 240, 0.18);
  background: linear-gradient(180deg, rgba(226,232,240,0.06), rgba(2,6,23,0.25));
}

.share-btn-copy {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, rgba(56,189,248,0.14), rgba(255,255,255,0.55));
}

body.theme-dark .share-btn-copy {
  background: linear-gradient(180deg, rgba(56,189,248,0.12), rgba(2,6,23,0.25));
}

/* -----------------------------
   12) FAQ (Accordion)
------------------------------ */
.faq-block h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 1000;
  color: var(--cp-text);
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--cp-border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

body.theme-dark .faq-item {
  background: rgba(2, 6, 23, 0.25);
}

.faq-item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  color: var(--cp-text);
  text-align: start;
}

.faq-item-header-text {
  line-height: 1.6;
  font-size: 13.5px;
}

.faq-item-icon {
  font-size: 20px;
  transform: rotate(0deg);
  transition: transform .18s ease;
  opacity: .8;
}

.faq-item-header.open .faq-item-icon {
  transform: rotate(90deg);
}

.faq-item-body {
  display: none;
  padding: 0 14px 14px;
  color: var(--cp-muted);
  line-height: 1.9;
  font-size: 13.5px;
}

.faq-item-body.open {
  display: block;
}

/* -----------------------------
   13) Blog grid (Modern)
------------------------------ */
.city-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 720px) {
  .city-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1040px) {
  .city-blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.city-blog-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--cp-border);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: var(--cp-text);
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

body.theme-dark .city-blog-card {
  background: rgba(2, 6, 23, 0.25);
}

.city-blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--cp-border-2);
  background: rgba(56, 189, 248, 0.06);
  box-shadow: var(--cp-shadow-2);
}

.city-blog-title {
  font-weight: 1000;
  line-height: 1.5;
  font-size: 14px;
}

.city-blog-meta {
  font-size: 12.5px;
  color: var(--cp-muted);
  font-weight: 800;
}

.city-blog-excerpt {
  font-size: 13px;
  color: var(--cp-muted);
  line-height: 1.8;
}

/* -----------------------------
   14) RTL/LTR Fine Tuning
------------------------------ */
html[lang="ar"] .city-page,
.city-page[dir="rtl"] {
  direction: rtl;
}

html[lang="en"] .city-page,
.city-page[dir="ltr"] {
  direction: ltr;
}

/* Numbers inside RTL */
.city-page #current-time,
.city-page .city-next-countdown,
.city-page .city-info-timer {
  direction: ltr;
  unicode-bidi: isolate;
}

/* --- Fix AM/PM bidi in Arabic tables (FINAL) --- */

/* اجعل خلية الوقت عربية عند العربية (بدون كسر الإنجليزية) */
html[lang="ar"] .city-page td.pt-time,
html[lang="ar"] .city-page .pt-time {
  direction: rtl;
  unicode-bidi: isolate;
  white-space: nowrap;
}

/* حاوية الوقت نثبتها LTR حتى تُعرض الأرقام صح */
.city-page .mq-time{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}

/* الأرقام دائمًا LTR ومعزولة */
.city-page .mq-time__clock{
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

/* ص/م تُعرض كعربية ومعزولة */
.city-page .mq-time__ampm{
  direction: rtl;
  unicode-bidi: isolate;
  font-weight: 900;
  opacity: .9;
}

/* -----------------------------
   15) Accessibility
------------------------------ */
.city-page :focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.45);
  outline-offset: 2px;
  border-radius: 10px;
}

/* -----------------------------
   16) Mobile polish
------------------------------ */
@media (max-width: 520px) {
  .city-page {
    padding: 18px 12px 28px;
  }
  .city-title { font-size: 20px; }
  .city-time-value { font-size: 24px; }
}

/* =====================================
   City SEO Text (Card Style)
   ===================================== */

.city-page .city-seo-wrapper {
  margin: 1.2rem 0 1.6rem;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--cp-border);
  background: linear-gradient(180deg, var(--cp-surface), var(--cp-surface-2));
  box-shadow: var(--cp-shadow-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.city-page .city-seo-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--cp-text);
}

.city-page .city-seo-text strong {
  font-weight: 900;
}

/* لو كانت الفقرة خارج .city-page لأي سبب */
.city-seo-wrapper {
  margin: 1.2rem 0 1.6rem;
}
.city-seo-text {
  margin: 0;
  line-height: 1.9;
}
/* =========================
   Fix Arabic AM/PM (ص/م) bidi issues — FINAL
   ========================= */

.city-page .mq-time{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;     /* يمنع نزول ص/م لسطر */
  direction: ltr;          /* نجعل الحاوية LTR */
  unicode-bidi: isolate;   /* نعزلها عن RTL العام */
}

.city-page .mq-time__clock{
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
}

.city-page .mq-time__ampm{
  direction: rtl;          /* ص/م عربية */
  unicode-bidi: isolate;
  font-size: .9em;
  opacity: .9;
  font-weight: 900;
}

