/* ── BASE ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f4f8;
  color: #1a2a3a;
  padding-bottom: 70px;
}

/* ── TOP NAV (desktop) ───────────────────────────────────────────────── */
.top-nav {
  display: none;
  background: #1e3f6e;
  border-bottom: 2px solid #152e52;
  padding: 0 24px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
}
.top-nav-logo { display: flex; align-items: center; gap: 10px; }
.top-logo-img { width: 40px; height: 40px; object-fit: contain; }
.top-nav-name { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.3; }
.top-nav-name span { color: #8ab4d8; font-size: 11px; display: block; font-weight: 400; }
.top-nav-links { display: flex; gap: 20px; }
.top-nav-links a { color: #c0d8f0; font-size: 13px; text-decoration: none; }
.top-nav-links a:hover { color: #fff; }
.top-nav-donate { background: #c8532a; color: white; padding: 7px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; }

/* ── MOBILE HEADER ───────────────────────────────────────────────────── */
.mob-header { background: #1e3f6e; border-bottom: 2px solid #152e52; padding: 10px 16px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 36px; height: 36px; object-fit: contain; }
.logo-text { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; }
.logo-text span { color: #8ab4d8; font-size: 10px; display: block; font-weight: 400; }

/* ── PRAYER SECTION ──────────────────────────────────────────────────── */
.prayer-section { background: #fff; margin-bottom: 12px; }
.prayer-meta { background: #152e52; padding: 10px 14px 4px; display: flex; justify-content: space-between; font-size: 11px; color: #8ab4d8; font-weight: 500; }
.prayer-live { background: #152e52; padding: 2px 14px 8px; display: flex; align-items: center; gap: 5px; font-size: 10px; color: #6a9ab8; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #5dd88a; }

.prayer-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.prayer-table thead th { background: #eef4fa; color: #1a5490; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 7px 4px; text-align: center; border-bottom: 1px solid #d0dcea; }
.prayer-table thead th:first-child { text-align: left; padding-left: 14px; }
.prayer-table tbody td { padding: 10px 4px; text-align: center; border-bottom: 0.5px solid #eef2f6; color: #1a2a3a; }
.prayer-table tbody td.row-label { text-align: left; padding-left: 14px; font-weight: 500; color: #2a4a6a; }
.prayer-table tbody td.current { background: #eef4fa; color: #1a5490; font-weight: 600; }
.prayer-table tbody tr.current-row td:first-child { border-left: 3px solid #216eb6; }
.prayer-footer { padding: 7px 14px 10px; font-size: 11px; color: #6a8aaa; border-top: 0.5px solid #d0dcea; display: flex; justify-content: space-between; }

/* ── JUMU'AH CARD ────────────────────────────────────────────────────── */
.jummah-card { background: #eef4fa; border: 0.5px solid #c0d8f0; border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; margin: 10px 14px; font-size: 12px; color: #2a4a6a; }
.jummah-card strong { display: block; font-size: 13px; color: #1e3f6e; }
.jummah-card p { color: #6a8aaa; font-size: 11px; }
.jummah-icon { font-size: 22px; }

/* ── SECTIONS ────────────────────────────────────────────────────────── */
.section { padding: 14px; }
.section-title { font-size: 11px; font-weight: 700; color: #1a5490; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; border-left: 3px solid #216eb6; padding-left: 8px; }

/* ── QUICK ACCESS ────────────────────────────────────────────────────── */
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quick-grid-2 { grid-template-columns: repeat(2, 1fr); }
.quick-btn { background: #fff; border: 0.5px solid #c8d8ea; border-radius: 10px; padding: 12px 6px 10px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: #1a2a3a; font-size: 11px; font-weight: 500; transition: background 0.15s; }
.quick-btn:hover { background: #f0f7ff; }
.quick-icon { font-size: 22px; }

/* ── DONATE SECTION ──────────────────────────────────────────────────── */
.donate-section { background: #1e3f6e; margin: 0 14px 14px; border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.donate-text h3 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.donate-text p { color: #8ab4d8; font-size: 12px; margin-bottom: 10px; line-height: 1.5; }
.donate-progress { background: #152e52; border-radius: 4px; height: 6px; margin-bottom: 5px; }
.donate-progress-fill { background: #5dd88a; height: 6px; border-radius: 4px; }
.donate-progress-label { display: flex; justify-content: space-between; font-size: 10px; color: #8ab4d8; }
.donate-btn { background: #c8532a; color: white; border: none; border-radius: 8px; padding: 11px; text-align: center; font-size: 14px; font-weight: 600; text-decoration: none; display: block; }

/* ── POST CARDS (homepage) ───────────────────────────────────────────── */
.announce-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.announce-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.13); }

.announce-img-wrap {
  position: relative;
  height: 140px;
  background: #c8d8ea;
  overflow: hidden;
}
.announce-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.announce-img-placeholder { width: 100%; height: 100%; }
.announce-img-placeholder--announcement { background: linear-gradient(135deg, #d0e4f4, #b0c8e4); }
.announce-img-placeholder--event        { background: linear-gradient(135deg, #fde8c8, #f0c890); }
.announce-img-placeholder--education    { background: linear-gradient(135deg, #c8e8d0, #9ad8b0); }
.announce-img-placeholder--fundraising  { background: linear-gradient(135deg, #f8d0d0, #f0a0a0); }
.announce-img-placeholder--reminder     { background: linear-gradient(135deg, #e8d0f4, #c8a0e8); }
.announce-sticky {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.92);
  font-size: 10px; padding: 2px 7px; border-radius: 4px; color: #444;
}

.announce-body { padding: 14px; }
.announce-meta { margin-bottom: 6px; }
.announce-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.03em;
}
.announce-tag--announcement { background: #eef4fa; color: #1a5490; }
.announce-tag--event        { background: #fef4ea; color: #a05a10; }
.announce-tag--education    { background: #eaf4ee; color: #1a7a3a; }
.announce-tag--reminder     { background: #f4eefa; color: #6a3aaa; }
.announce-tag--fundraising  { background: #faeaea; color: #aa2a2a; }

.announce-title { font-size: 15px; font-weight: 700; color: #1a2a3a; margin: 6px 0; line-height: 1.35; }
.announce-excerpt {
  font-size: 12px; color: #6a8aaa; line-height: 1.55; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.announce-footer { display: flex; align-items: center; justify-content: space-between; }
.announce-date { font-size: 11px; color: #6a8aaa; }
.announce-readmore { font-size: 12px; color: #216eb6; font-weight: 600; }

.announce-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

@media (min-width: 768px) {
  .announce-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .announce-card { margin-bottom: 0; }
  .announce-img-wrap { height: 160px; }
}

.no-posts { font-size: 13px; color: #6a8aaa; padding: 10px 0; }

/* ── SERVICE ROWS ────────────────────────────────────────────────────── */
.service-row { background: #fff; border: 0.5px solid #c8d8ea; border-radius: 8px; padding: 11px 12px; margin-bottom: 6px; display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; transition: background 0.15s; }
.service-row:hover { background: #f0f7ff; }
.service-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.service-info h4 { font-size: 13px; font-weight: 600; color: #1a2a3a; margin-bottom: 2px; }
.service-info p { font-size: 11px; color: #6a8aaa; line-height: 1.3; }
.service-arrow { margin-left: auto; font-size: 20px; color: #c8d8ea; }

/* ── VISIT CARD ──────────────────────────────────────────────────────── */
.visit-card { background: #fff; border: 0.5px solid #c8d8ea; border-radius: 10px; overflow: hidden; }
.visit-img { width: 100%; height: 120px; object-fit: cover; object-position: center top; display: block; }
.visit-address { padding: 8px 12px; font-size: 12px; color: #6a8aaa; }
.visit-btns { display: flex; gap: 8px; padding: 0 12px 12px; }
.visit-btn { flex: 1; text-align: center; padding: 8px 6px; border-radius: 7px; border: 0.5px solid #c8d8ea; font-size: 11px; font-weight: 500; color: #216eb6; text-decoration: none; background: #fff; }

/* ── SEE ALL ─────────────────────────────────────────────────────────── */
.see-all { text-align: center; padding: 6px 0 2px; }
.see-all a { font-size: 12px; color: #216eb6; font-weight: 500; text-decoration: none; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer { background: #1e3f6e; padding: 16px 24px; text-align: center; }
.site-footer p { color: #8ab4d8; font-size: 12px; }
.site-footer a { color: #c0d8f0; text-decoration: none; }

/* ── BOTTOM NAV ──────────────────────────────────────────────────────── */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 0.5px solid #c8d8ea; display: flex; padding: 6px 0 10px; z-index: 100; }
.bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; font-size: 10px; color: #8aaac8; }
.bottom-nav a.active { color: #216eb6; }
.bottom-nav a.nav-donate { color: #c8532a; }
.nav-icon { font-size: 20px; }

/* ── RESPONSIVE HELPERS ──────────────────────────────────────────────── */
.mobile-only { display: block; }
.desktop-only { display: none; }

@media (min-width: 768px) {
  body { padding-bottom: 0; background: #e8eef4; }
  .mob-header { display: none; }
  .top-nav { display: flex; }
  .bottom-nav { display: none; }
  .mobile-only { display: none !important; }
  .desktop-only { display: block; }

  .page-body { display: grid; grid-template-columns: 340px 1fr; gap: 20px; max-width: 1100px; margin: 20px auto; padding: 0 20px; align-items: start; }

  .prayer-section { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-bottom: 0; }

  .donate-section { flex-direction: row; align-items: center; margin: 0 0 14px 0; }
  .donate-text { flex: 1; }
  .donate-btn { white-space: nowrap; padding: 11px 20px; display: inline-block; flex-shrink: 0; }

  .site-footer { margin-top: 20px; }
}

/* ── NEWS LISTING PAGE ───────────────────────────────────────────────── */
.news-page { max-width: 1100px; margin: 0 auto; padding: 20px 16px 80px; }
.news-page-header { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #c8d8ea; }
.news-page-title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; color: #1a2a3a; margin-bottom: 4px; }
.news-page-meta { font-size: 13px; color: #6a8aaa; }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.news-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.13); }

.news-card__img-wrap {
  position: relative; aspect-ratio: 16/9;
  background: #c8d8ea; overflow: hidden; flex-shrink: 0;
}
.news-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card__img-placeholder { width: 100%; height: 100%; }
.news-card__img-placeholder--announcement { background: linear-gradient(135deg, #d0e4f4, #b0c8e4); }
.news-card__img-placeholder--event        { background: linear-gradient(135deg, #fde8c8, #f0c890); }
.news-card__img-placeholder--education    { background: linear-gradient(135deg, #c8e8d0, #9ad8b0); }
.news-card__img-placeholder--fundraising  { background: linear-gradient(135deg, #f8d0d0, #f0a0a0); }
.news-card__img-placeholder--reminder     { background: linear-gradient(135deg, #e8d0f4, #c8a0e8); }
.news-card__sticky {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.92);
  font-size: 10px; padding: 2px 7px; border-radius: 4px; color: #444;
}

.news-card__body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.news-card__title { font-size: 15px; font-weight: 700; color: #1a2a3a; margin: 7px 0 6px; line-height: 1.35; }
.news-card__excerpt { font-size: 12px; color: #6a8aaa; line-height: 1.55; margin-bottom: 10px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.news-card__date { font-size: 11px; color: #8aaac8; }
.news-card__read-more { font-size: 12px; color: #216eb6; font-weight: 600; }

.news-pagination { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 36px 0 0; flex-wrap: wrap; }
.news-pagination__btn { background: #1e3f6e; color: white; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; }
.news-pagination__btn:hover { background: #152e52; }
.news-pagination__info { font-size: 13px; color: #6a8aaa; }

@media (min-width: 520px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .news-page { padding: 28px 24px 80px; }
  .news-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ══════════════════════════════════════════════════════════════════════
   DESKTOP REDESIGN — min-width: 768px
   All styles below apply desktop-only new layout.
   Mobile HTML/CSS above is completely untouched.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Hide old desktop elements at 768px+ ────────────────────────────── */
@media (min-width: 768px) {
  body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #f4f6f9; }
  .top-nav     { display: none !important; }
  .page-body   { display: none !important; }
  .site-footer { display: none !important; }
  .mob-header  { display: none !important; }
  .bottom-nav  { display: none !important; }
}

/* ── UTILITY BAR ─────────────────────────────────────────────────────── */
.dt-utility-bar { background: #0d1b2e; }
.dt-utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 32px;
}
.dt-utility-left,
.dt-utility-right { display: flex; align-items: center; gap: 16px; font-size: 11px; color: #8aabcc; }
.dt-utility-left a,
.dt-utility-right a { color: #8aabcc; text-decoration: none; font-size: 11px; transition: color 0.15s, background 0.15s; padding: 2px 7px; border-radius: 12px; }
.dt-utility-left a:hover,
.dt-utility-right a:hover { color: #c8d8ea; background: rgba(255,255,255,0.08); }
.dt-utility-right .ti { font-size: 14px; vertical-align: middle; }

/* ── MAIN NAV ────────────────────────────────────────────────────────── */
.dt-main-nav { background: #1a3a5c; }
.dt-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 60px;
}
.dt-nav-logo { display: flex; align-items: center; gap: 12px; }
.dt-nav-logo-img { width: 42px; height: 42px; object-fit: contain; }
.dt-nav-logo-text { display: flex; flex-direction: column; }
.dt-nav-name { color: #fff; font-family: 'Lora', serif; font-size: 15px; font-weight: 700; line-height: 1.2; }
.dt-nav-sub  { color: #8aabcc; font-size: 11px; font-weight: 400; }
.dt-nav-links { display: flex; gap: 4px; }
.dt-nav-links a { color: #c8d8ea; font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.15s, background 0.15s; padding: 5px 12px; border-radius: 20px; }
.dt-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.dt-nav-actions { display: flex; align-items: center; gap: 12px; }
.dt-nav-search-btn {
  background: none; border: none; color: #8aabcc; font-size: 18px;
  cursor: pointer; padding: 4px; line-height: 1; transition: color 0.15s;
}
.dt-nav-search-btn:hover { color: #fff; }
.dt-nav-donate {
  background: #c8963e; color: #fff; padding: 8px 20px;
  border-radius: 20px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.dt-nav-donate:hover { background: #b07c2a; }
.top-nav-listen {
  display: inline-flex; align-items: center; gap: 6px;
  color: white; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; margin-right: 8px; transition: background 0.2s;
}
.top-nav-listen:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 768px) { .top-nav-listen { display: none; } }

/* ── PRAYER TIMES BAR ────────────────────────────────────────────────── */
.dt-prayer-bar { background: #0f2a4a; }
.dt-prayer-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 64px; gap: 24px;
}
.dt-prayer-date { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.dt-prayer-greg  { font-size: 12px; font-weight: 600; color: #fff; }
.dt-prayer-hijri { font-size: 10px; color: #8aabcc; }
.dt-prayer-cols { display: flex; gap: 0; flex: 1; justify-content: center; }
.dt-prayer-col {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 0 20px; border-right: 1px solid #1a3a5c; min-width: 72px;
}
.dt-prayer-col:last-child { border-right: none; }
.dt-prayer-col--current { border-bottom: 2px solid #c8963e; padding-bottom: 2px; }
.dt-pcol-name   { font-size: 10px; color: #8aabcc; text-transform: uppercase; letter-spacing: 0.05em; }
.dt-pcol-adhan  { font-size: 11px; color: #8aabcc; }
.dt-pcol-iqamah { font-size: 22px; font-weight: 700; color: #fff; }
.dt-prayer-col--current .dt-pcol-iqamah { color: #f5c872; }
.dt-prayer-next { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.dt-prayer-next-label { font-size: 9px; font-weight: 700; color: #8aabcc; letter-spacing: 0.08em; text-transform: uppercase; }
.dt-prayer-countdown { font-size: 22px; font-weight: 700; color: #f5c872; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }

/* ── HERO ────────────────────────────────────────────────────────────── */
/* ── HERO CAROUSEL ───────────────────────────────────────────────────── */
.hero-carousel { position: relative; height: 320px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { transform: translateX(0); }
.hero-slide.prev  { transform: translateX(-100%); }
.hero-overlay { position: absolute; inset: 0; background: rgba(13,27,46,0.65); }
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-block; border: 1px solid #c8963e; color: #c8963e;
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 12px; letter-spacing: 0.08em; width: fit-content;
}
.hero-heading {
  font-family: 'Lora', serif; font-size: 36px; font-weight: 700;
  color: white; line-height: 1.2; margin: 0 0 12px; max-width: 600px;
}
.hero-highlight { color: #c8963e; }
.hero-subtext {
  font-size: 15px; color: #a8c4dc; max-width: 520px;
  line-height: 1.6; margin: 0 0 20px;
}
.hero-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn {
  padding: 10px 22px; border-radius: 6px; font-size: 14px;
  font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.hero-btn--filled { background: #c8963e; color: white; }
.hero-btn--filled:hover { background: #a87830; color: white; }
.hero-btn--outline { border: 2px solid white; color: white; background: transparent; }
.hero-btn--outline:hover { background: rgba(255,255,255,0.1); }
.hero-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: all 0.2s; padding: 0;
}
.hero-dot.active { background: white; transform: scale(1.3); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 28px; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; z-index: 10; display: flex; align-items: center;
  justify-content: center; transition: background 0.2s; line-height: 1;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

/* ── Hero campaign tracker overlay ─────────────────────────────────── */
.hero-campaign-tracker {
  position: absolute; bottom: 40px; right: 32px; z-index: 2;
  width: 230px;
  background: rgba(13, 27, 46, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 150, 62, 0.35);
}
.hero-campaign-label {
  font-size: 9px; font-weight: 700; color: #c8963e;
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 7px;
}
.hero-campaign-title {
  font-family: 'Lora', serif; font-size: 13px; font-weight: 700;
  color: #fff; margin: 0 0 7px; line-height: 1.3;
}
.hero-campaign-amounts {
  font-size: 17px; font-weight: 600; color: #fff; margin: 0 0 8px; line-height: 1.2;
}
.hero-campaign-target { font-size: 11px; color: #6a8aaa; font-weight: 400; }
.hero-campaign-bar-wrap { margin-bottom: 10px; }
.hero-campaign-bar { background: #1a3a5c; border-radius: 4px; height: 5px; }
.hero-campaign-bar-fill { background: #c8963e; height: 5px; border-radius: 4px; }
.hero-campaign-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hero-campaign-pct { font-size: 9px; color: #5a7a9a; line-height: 1.3; flex: 1; }
.hero-campaign-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #c8963e; color: #fff; font-size: 11px; font-weight: 600;
  padding: 6px 11px; border-radius: 6px; text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.hero-campaign-btn:hover { background: #b07a2e; color: #fff; }

.dt-accent { color: #c8963e; }
.dt-hero-photo-frame {
  flex-shrink: 0; width: 300px; height: 380px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.15);
}
.dt-hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.dt-btn-amber {
  background: #c8963e; color: #fff; padding: 13px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.dt-btn-amber:hover { background: #b07c2a; }
.dt-btn-outline {
  background: transparent; color: #fff; padding: 12px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.15s, background 0.15s;
}
.dt-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.dt-hero-photo-frame {
  flex-shrink: 0; width: 300px; height: 380px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.15);
}
.dt-hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── STATS STRIP ─────────────────────────────────────────────────────── */
.dt-stats { background: #fff; border-bottom: 1px solid #e4eaf2; }
.dt-stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1280px; margin: 0 auto; padding: 48px 28px;
}
.dt-stat { display: flex; align-items: flex-start; gap: 18px; padding: 0 40px 0 0; }
.dt-stat--div { border-left: 1px solid #e4eaf2; padding: 0 40px 0 40px; }
.dt-stat-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(200,150,62,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #c8963e; font-size: 22px; flex-shrink: 0;
}
.dt-stat-body strong { display: block; font-size: 16px; font-weight: 700; color: #0d1b2e; margin-bottom: 6px; }
.dt-stat-body p { font-size: 13px; color: #6a8aaa; line-height: 1.55; }

/* ── ABOUT ───────────────────────────────────────────────────────────── */
.dt-about { background: #0d1b2e; }
.dt-about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  max-width: 1280px; margin: 0 auto; padding: 88px 28px; align-items: center;
}
.dt-about-photos { position: relative; padding-bottom: 40px; padding-right: 32px; }
.dt-about-img-main {
  width: 100%; height: 340px; object-fit: cover; display: block;
  border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.dt-about-img-inset {
  position: absolute; bottom: 0; right: 0;
  width: 58%; height: 200px; object-fit: cover;
  border-radius: 8px; border: 4px solid #1e3a55;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.dt-label-amber {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #c8963e; margin-bottom: 14px;
}
.dt-about-heading {
  font-family: 'Lora', serif; font-size: 36px; font-weight: 700;
  color: #ffffff; line-height: 1.25; margin-bottom: 20px;
}
.dt-about-body { font-size: 15px; color: #a8c4d8; line-height: 1.75; margin-bottom: 24px; }
.dt-about-link { color: #c8963e; font-size: 14px; font-weight: 600; text-decoration: none; }
.dt-about-link:hover { text-decoration: underline; }

/* ── SERVICES ────────────────────────────────────────────────────────── */
.dt-services { background: #0d1b2e; }
.dt-services-inner { max-width: 1280px; margin: 0 auto; padding: 88px 28px; text-align: center; }
.dt-services-heading {
  font-family: 'Lora', serif; font-size: 38px; font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 14px;
}
.dt-services-sub { font-size: 15px; color: #8aabcc; margin-bottom: 48px; }
.dt-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dt-svc-card {
  background: #1a2d42; border-radius: 12px; padding: 28px 22px 24px;
  text-align: left; display: flex; flex-direction: column;
}
.dt-svc-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(200,150,62,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #c8963e; font-size: 22px; margin-bottom: 18px;
}
.dt-svc-title {
  font-family: 'Lora', serif; font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.dt-svc-desc { font-size: 13px; color: #8aabcc; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.dt-svc-link { font-size: 12px; color: #c8963e; font-weight: 600; text-decoration: none; }
.dt-svc-link:hover { text-decoration: underline; }

/* ── NEWS ────────────────────────────────────────────────────────────── */
.dt-news { background: #fff; }
.dt-news-inner { max-width: 1280px; margin: 0 auto; padding: 56px 28px; }
.dt-news-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px;
}
.dt-news-heading {
  font-family: 'Lora', serif; font-size: 32px; font-weight: 700;
  color: #0d1b2e; line-height: 1.2; margin-top: 8px;
}
.dt-news-all { font-size: 13px; color: #1a5490; font-weight: 600; text-decoration: none; white-space: nowrap; }
.dt-news-all:hover { text-decoration: underline; }
.dt-news-layout { display: grid; grid-template-columns: 1fr 200px; gap: 24px; align-items: start; }
.dt-news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
/* Quick access sidebar */
.dt-quick-sidebar {
  background: #0d1b2e;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(33,110,182,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.dt-quick-sidebar-title {
  font-size: 10px; font-weight: 700; color: #c8963e; letter-spacing: 0.12em;
  text-transform: uppercase; margin: 0;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(33,110,182,0.25);
  background: rgba(26,58,92,0.5);
}
.dt-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(33,110,182,0.2); padding: 0; }
.dt-quick-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; padding: 16px 6px; background: #0d1b2e;
  text-decoration: none; color: #d0e4f4; font-size: 11px; font-weight: 600;
  text-align: center; transition: background 0.15s, color 0.15s; line-height: 1.2;
}
.dt-quick-btn:hover { background: #1a3a5c; color: #ffffff; }
.dt-quick-btn .ti { font-size: 22px; color: #c8963e; transition: color 0.15s; }
.dt-quick-btn:hover .ti { color: #e8b05a; }
.dt-news-featured {
  display: flex; flex-direction: column; text-decoration: none;
  background: #f8f9fb; border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.dt-news-featured:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.dt-news-featured-img {
  position: relative; height: 280px; background: #c8d8ea; overflow: hidden;
}
.dt-news-side { display: flex; flex-direction: column; gap: 16px; }
.dt-news-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: #f8f9fb; border-radius: 12px; overflow: hidden; flex: 1;
  transition: box-shadow 0.2s;
}
.dt-news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.dt-news-card-img { position: relative; height: 120px; background: #c8d8ea; overflow: hidden; }
.dt-nimg { width: 100%; height: 100%; object-fit: cover; display: block; }
.dt-ncat {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.dt-ncat--announcement { background: #eef4fa; color: #1a5490; }
.dt-ncat--event        { background: #fef4ea; color: #a05a10; }
.dt-ncat--education    { background: #eaf4ee; color: #1a7a3a; }
.dt-ncat--reminder     { background: #f4eefa; color: #6a3aaa; }
.dt-ncat--fundraising  { background: #faeaea; color: #aa2a2a; }
.dt-news-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.dt-news-body--sm { padding: 12px 14px; }
.dt-ndate { font-size: 11px; color: #8aabcc; margin-bottom: 6px; display: block; }
.dt-ntitle {
  font-family: 'Lora', serif; font-size: 20px; font-weight: 700;
  color: #0d1b2e; line-height: 1.3; margin-bottom: 10px;
}
.dt-ntitle--sm { font-size: 15px; margin-bottom: 6px; }
.dt-nexcerpt { font-size: 13px; color: #6a8aaa; line-height: 1.6; margin-bottom: 12px; flex: 1; }
.dt-nread { font-size: 12px; color: #1a5490; font-weight: 600; margin-top: auto; }

/* ── SOLAR APPEAL ────────────────────────────────────────────────────── */
.dt-solar { background: #0a2a1e; }
.dt-solar-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  max-width: 1280px; margin: 0 auto; padding: 88px 28px; align-items: center;
}
.dt-solar-content .dt-label-amber { color: #f5c872; }
.dt-solar-heading {
  font-family: 'Lora', serif; font-size: 38px; font-weight: 700;
  color: #fff; line-height: 1.25; margin: 14px 0 18px;
}
.dt-solar-body { font-size: 15px; color: #6aaa88; line-height: 1.75; margin-bottom: 32px; }
.dt-solar-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.dt-btn-outline-teal {
  background: transparent; color: #fff; padding: 12px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.15s;
}
.dt-btn-outline-teal:hover { border-color: rgba(255,255,255,0.7); }
.dt-solar-stats { text-align: center; }
.dt-solar-amount { font-size: 64px; font-weight: 700; color: #fff; line-height: 1; font-family: 'Lora', serif; }
.dt-solar-raised { font-size: 14px; color: #6aaa88; margin: 8px 0 24px; }
.dt-solar-bar-wrap { margin-bottom: 16px; }
.dt-solar-bar { background: rgba(255,255,255,0.1); border-radius: 6px; height: 10px; }
.dt-solar-bar-fill { background: #c8963e; height: 10px; border-radius: 6px; }
.dt-solar-meta { font-size: 13px; color: #6aaa88; }

/* ── FIND US ─────────────────────────────────────────────────────────── */
.dt-findus { background: #f4f6f9; }
.dt-findus-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  max-width: 1280px; margin: 0 auto; padding: 88px 28px; align-items: start;
}
.dt-findus-map iframe { display: block; }
.dt-findus-heading {
  font-family: 'Lora', serif; font-size: 36px; font-weight: 700;
  color: #0d1b2e; line-height: 1.2; margin: 14px 0 16px;
}
.dt-findus-body { font-size: 15px; color: #4a6a8a; line-height: 1.7; margin-bottom: 28px; }
.dt-findus-detail {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #1a2a3a; margin-bottom: 14px; line-height: 1.5;
}
.dt-findus-detail .ti { font-size: 18px; color: #c8963e; flex-shrink: 0; margin-top: 1px; }
.dt-findus-detail a { color: #1a5490; text-decoration: none; font-weight: 500; }
.dt-findus-detail a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.dt-footer { background: #0d1b2e; }
.dt-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1280px; margin: 0 auto; padding: 64px 28px 48px;
}
.dt-footer-logo { width: 44px; height: 44px; object-fit: contain; margin-bottom: 12px; display: block; }
.dt-footer-brand-name {
  font-family: 'Lora', serif; font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.dt-footer-brand-desc { font-size: 13px; color: #4a6a8a; line-height: 1.65; max-width: 240px; }
.dt-footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8aabcc; margin-bottom: 16px;
}
.dt-footer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.dt-footer-links a { color: #4a6a8a; font-size: 13px; text-decoration: none; transition: color 0.15s, background 0.15s; padding: 4px 10px; border-radius: 16px; display: inline-block; }
.dt-footer-links a:hover { color: #8aabcc; background: rgba(255,255,255,0.06); }
.dt-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 20px 28px;
  border-top: 1px solid #1a3a5c; font-size: 11px; color: #2a4a6a;
}

/* ── DESKTOP CTA/EVENT BANNER ────────────────────────────────────────── */
.dt-cta-banner { background: #0d2a1e; }
.dt-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  max-width: 1280px; margin: 0 auto; padding: 28px 28px;
}
.dt-cta-left { flex: 1; min-width: 0; }
.dt-cta-title {
  font-family: 'Lora', serif; font-size: 24px; font-weight: 700;
  color: #fff; line-height: 1.3; margin-top: 8px;
}
.dt-cta-sub { font-size: 14px; color: #6aaa88; margin-top: 6px; }
.dt-cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.dt-cta-date { font-size: 13px; color: #8aabcc; }
.dt-cta-pills { display: flex; gap: 8px; }
.dt-cta-pill { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 16px; }
.dt-cta-pill--amber { background: rgba(200,150,62,0.2); color: #f5c872; border: 1px solid rgba(200,150,62,0.3); }
.dt-cta-pill--muted { background: rgba(255,255,255,0.06); color: #8aabcc; border: 1px solid rgba(255,255,255,0.1); }
.dt-cta-btns { display: flex; gap: 10px; }

/* ══════════════════════════════════════════════════════════════════════
   MOBILE REDESIGN — default (max-width: 767px context)
   ══════════════════════════════════════════════════════════════════════ */

/* ── Mobile header (override) ────────────────────────────────────────── */
.mob-header {
  background: #1a3a5c; border-bottom: none;
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
}
.mob-header-logo { display: flex; align-items: center; gap: 10px; }
.mob-logo-img { width: 36px; height: 36px; object-fit: contain; }
.mob-header-text { display: flex; flex-direction: column; }
.mob-header-name { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.2; }
.mob-header-sub { color: #8aabcc; font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.mob-header-bell { color: #8aabcc; font-size: 22px; background: none; border: none; cursor: pointer; line-height: 1; padding: 2px; }
.mob-header-bell .ti { display: block; }

/* ── Mobile date bar ─────────────────────────────────────────────────── */
.mob-date-bar {
  background: #132d4a; padding: 6px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.mob-date-bar span { font-size: 11px; color: #8aabcc; }

/* ── Mobile prayer card ──────────────────────────────────────────────── */
.mob-prayer-card {
  background: #fff; margin: 12px 14px 0;
  border-radius: 12px; border: 0.5px solid #dce8f0;
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mob-prayer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 8px;
}
.mob-prayer-header h3 { font-size: 13px; font-weight: 700; color: #1a2a3a; }
.mob-prayer-header a { font-size: 12px; color: #216eb6; text-decoration: none; }
.mob-prayer-table { width: 100%; border-collapse: collapse; }
.mob-prayer-table thead th {
  padding: 6px 2px; text-align: center;
  font-size: 10px; font-weight: 700; color: #6a8aaa;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: #f4f8fc; border-bottom: 1px solid #e4eaf2;
}
.mob-prayer-table thead th.mpc--cur { background: #c8963e; color: #fff; }
.mob-prayer-table tbody td {
  padding: 9px 2px; text-align: center;
  border-bottom: 0.5px solid #f0f4f8; color: #1a2a3a; font-size: 13px;
}
.mob-prayer-table tbody td.mpc--cur { background: #c8963e; color: #fff; font-weight: 700; }
.mpt-label {
  text-align: left !important; padding-left: 14px !important;
  font-size: 9px; font-weight: 700; color: #8aabcc;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.mob-prayer-footer {
  padding: 7px 14px; display: flex; justify-content: space-between;
  font-size: 10px; color: #8aabcc; border-top: 0.5px solid #e4eaf2;
}
.mob-prayer-error { padding: 14px; font-size: 13px; color: #6a8aaa; }

/* ── Mobile event banner ─────────────────────────────────────────────── */
.mob-event-banner {
  background: #0d3d2e; margin: 12px 14px 0;
  border-radius: 12px; padding: 16px 14px;
}
.mob-event-label {
  font-size: 9px; font-weight: 700; color: #c8963e;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.mob-event-title {
  font-family: 'Lora', serif; font-size: 18px; font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 4px;
}
.mob-event-sub { font-size: 12px; color: #6aaa88; margin-bottom: 4px; }
.mob-event-date { font-size: 12px; color: #6aaa88; margin-bottom: 12px; }
.mob-event-pills { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.mob-pill { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 14px; }
.mob-pill--amber { background: rgba(200,150,62,0.2); color: #f5c872; border: 1px solid rgba(200,150,62,0.3); }
.mob-pill--muted  { background: rgba(255,255,255,0.08); color: #8aabcc; border: 1px solid rgba(255,255,255,0.12); }
.mob-event-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #c8963e; color: #fff; padding: 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}

/* ── Mobile sections ─────────────────────────────────────────────────── */
.mob-section { padding: 14px 14px 2px; }
.mob-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mob-section-title { font-size: 12px; font-weight: 700; color: #1a2a3a; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.mob-section-header .mob-section-title { margin-bottom: 0; }
.mob-section-link { font-size: 12px; color: #216eb6; text-decoration: none; font-weight: 500; }

/* ── Mobile quick access ─────────────────────────────────────────────── */
.mob-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mob-quick-btn {
  background: #fff; border: 0.5px solid #dce8f0; border-radius: 12px;
  padding: 14px 8px 10px; display: flex; flex-direction: column;
  align-items: center; gap: 6px; text-decoration: none;
  font-size: 11px; font-weight: 500; color: #1a2a3a;
  min-height: 76px; justify-content: center; transition: background 0.15s;
}
.mob-quick-btn:hover { background: #f0f7ff; }
.mob-quick-icon { font-size: 28px; color: #216eb6; }
.mob-quick-btn .ti.mob-quick-icon { display: block; }
.mob-quick-icon-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.mob-quick-live {
  position: absolute; top: -4px; right: -8px;
  background: #e53535; color: #fff;
  font-size: 7px; font-weight: 700;
  padding: 1px 4px; border-radius: 4px; letter-spacing: 0.04em;
}

/* ── Mobile news ─────────────────────────────────────────────────────── */
.mob-news-list { display: flex; flex-direction: column; gap: 12px; }
.mob-news-card {
  display: block; background: #fff; border-radius: 12px;
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.mob-news-img-wrap { position: relative; aspect-ratio: 16/9; background: #c8d8ea; overflow: hidden; }
.mob-news-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mob-news-cat {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mob-news-cat--announcement { background: #eef4fa; color: #1a5490; }
.mob-news-cat--event        { background: #fef4ea; color: #a05a10; }
.mob-news-cat--education    { background: #eaf4ee; color: #1a7a3a; }
.mob-news-cat--reminder     { background: #f4eefa; color: #6a3aaa; }
.mob-news-cat--fundraising  { background: #faeaea; color: #aa2a2a; }
.mob-news-body { padding: 14px; }
.mob-news-title {
  font-family: 'Lora', serif; font-size: 16px; font-weight: 700;
  color: #0d1b2e; line-height: 1.35; margin-bottom: 6px;
}
.mob-news-excerpt {
  font-size: 12px; color: #6a8aaa; line-height: 1.55; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mob-news-footer { display: flex; justify-content: space-between; align-items: center; }
.mob-news-date { font-size: 11px; color: #8aabcc; }
.mob-news-read { font-size: 12px; color: #216eb6; font-weight: 600; }

/* ── Mobile solar CTA ────────────────────────────────────────────────── */
.mob-solar-card { background: #0d1b2e; border-radius: 12px; padding: 18px 16px; }
.mob-solar-label {
  font-size: 9px; font-weight: 700; color: #c8963e;
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 10px;
}
.mob-solar-heading {
  font-family: 'Lora', serif; font-size: 18px; font-weight: 700;
  color: #fff; line-height: 1.35; margin-bottom: 8px;
}
.mob-solar-amount-text { font-size: 12px; color: #6a8aaa; margin-bottom: 10px; }
.mob-solar-bar-wrap { margin-bottom: 6px; }
.mob-solar-bar { background: #1a3a5c; border-radius: 4px; height: 6px; }
.mob-solar-bar-fill { background: #c8963e; height: 6px; border-radius: 4px; }
.mob-solar-meta { font-size: 10px; color: #4a6a8a; margin-bottom: 14px; }
.mob-solar-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #c8963e; color: #fff; padding: 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}

/* ── Mobile services ─────────────────────────────────────────────────── */
.mob-svc-list { display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.mob-svc-row {
  display: flex; align-items: center; gap: 12px;
  min-height: 52px; padding: 10px 14px;
  background: #fff; border-bottom: 0.5px solid #e8eef4;
  text-decoration: none; color: inherit; transition: background 0.15s;
}
.mob-svc-row:last-child { border-bottom: none; }
.mob-svc-row:hover { background: #f4f8fc; }
.mob-svc-icon {
  width: 32px; height: 32px; border-radius: 8px; background: #eef4fa;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #216eb6; font-size: 16px;
}
.mob-svc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mob-svc-title { font-size: 13px; font-weight: 600; color: #1a2a3a; }
.mob-svc-sub { font-size: 11px; color: #6a8aaa; }
.mob-svc-arrow { font-size: 16px; color: #c8d8ea; flex-shrink: 0; }

/* ── Mobile footer (override) ────────────────────────────────────────── */
.site-footer {
  background: #0d1b2e; padding: 28px 20px 24px;
  text-align: center; display: block;
}
.mob-footer-logo { width: 40px; height: 40px; object-fit: contain; margin: 0 auto 12px; display: block; }
.mob-footer-name { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.mob-footer-address { color: #4a6a8a; font-size: 11px; line-height: 1.6; margin-bottom: 10px; }
.mob-footer-phone { color: #c8963e; font-size: 14px; font-weight: 600; text-decoration: none; display: block; margin-bottom: 10px; }
.mob-footer-charity { color: #2a4a6a; font-size: 10px; }

/* ── Mobile bottom nav (override) ───────────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 0.5px solid #e0e8f0;
  display: flex; align-items: flex-end; padding: 4px 0 10px; z-index: 100;
}
.bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; text-decoration: none; font-size: 10px; color: #8aaac8;
}
.bottom-nav a .ti { font-size: 22px; display: block; }
.bottom-nav a.active { color: #216eb6; }
.bottom-nav a.nav-donate { color: #c8963e; }
.nav-donate-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: #c8963e; display: flex; align-items: center; justify-content: center;
  margin-top: -10px; box-shadow: 0 2px 10px rgba(200,150,62,0.4);
}
.nav-donate-circle .ti { font-size: 20px; color: #fff; }

/* ── SINGLE POST PAGE ────────────────────────────────────────────────── */
.post-page { background: #f0f4f8; min-height: calc(100vh - 54px); padding: 20px 16px 80px; }
.post-container { max-width: 780px; margin: 0 auto; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 24px 20px 32px; }
@media (min-width: 768px) {
  .post-page { padding: 28px 24px 80px; }
  .post-container { padding: 36px 44px 44px; }
}
.post-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #888; margin-bottom: 16px; flex-wrap: wrap; }
.post-breadcrumb a { color: #216eb6; text-decoration: none; }
.post-breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #ccc; }
.post-back { margin-bottom: 20px; }
.post-back--bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #d8e4f0; margin-bottom: 0; }
.post-back a { color: #216eb6; text-decoration: none; font-size: 14px; font-weight: 500; }
.post-back a:hover { text-decoration: underline; }
.post-title { font-size: clamp(1.35rem, 4vw, 2rem); font-weight: 700; color: #1a2a3a; line-height: 1.25; margin: 10px 0 8px; }
.post-date { font-size: 13px; color: #6a8aaa; margin: 0 0 20px; }
.post-hero-img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 24px; display: block; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.post-excerpt { font-size: 1.05rem; color: #3a5a7a; line-height: 1.65; margin: 0 0 24px; font-style: italic; border-left: 4px solid #216eb6; padding-left: 16px; }

/* ── SINGLE POST BODY ────────────────────────────────────────────────── */
.post-body { line-height: 1.85; font-size: 16px; color: #2a3a4a; }
.post-body p { margin-bottom: 1.2em; }
.post-body h2 { font-size: 1.4em; font-weight: 700; color: #1a2a3a; margin: 1.6em 0 0.5em; line-height: 1.3; }
.post-body h3 { font-size: 1.2em; font-weight: 700; color: #1a2a3a; margin: 1.4em 0 0.4em; line-height: 1.3; }
.post-body h4 { font-size: 1.05em; font-weight: 700; color: #1a2a3a; margin: 1.2em 0 0.4em; }
.post-body ul, .post-body ol { margin: 0 0 1.2em 1.6em; }
.post-body li { margin-bottom: 0.4em; }
.post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; display: block; }
.post-body a { color: #216eb6; text-decoration: underline; }
.post-body a:hover { color: #1a5490; }
.post-body blockquote { border-left: 4px solid #216eb6; padding-left: 16px; margin: 1.2em 0; color: #4a6a8a; font-style: italic; }
.post-body strong { color: #1a2a3a; }
.post-body hr { border: none; border-top: 1px solid #d8e4f0; margin: 2em 0; }
.post-body figure { margin: 1.2em 0; }
.post-body figcaption { font-size: 12px; color: #6a8aaa; margin-top: 6px; text-align: center; }

/* ── PRAYER NOTICE (makrooh / ishraq) ───────────────────────────────── */
.prayer-notice { padding: 8px 14px; font-size: 12px; text-align: center; font-weight: 500; }
.prayer-notice--makrooh { background: #c0392b; color: #ffffff; border-top: 0.5px solid #922b21; }
.prayer-notice--ishraq  { background: #fffde7; color: #6a5a00; border-top: 0.5px solid #e0d060; }
.dt-prayer-makrooh-note { font-size: 14px; color: #f5c872; font-weight: 600; font-style: italic; }

/* ── GENERIC CMS PAGE ─────────────────────────────────────────────────── */
.pg-wrap { background: #f0f4f8; padding: 40px 28px 60px; }
.pg-container {
  max-width: 900px; margin: 0 auto;
  background: #fff; border-radius: 10px;
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pg-heading {
  font-family: 'Lora', serif; font-size: 2rem; font-weight: 700;
  color: #1a2a3a; margin: 0 0 28px; padding-bottom: 20px;
  border-bottom: 1px solid #e4eaf2; line-height: 1.2;
}
.mob-pg-content { padding: 20px 16px 40px; }
.mob-pg-heading { font-size: 1.4rem; font-weight: 700; color: #1a2a3a; margin: 0 0 20px; line-height: 1.25; }

/* ── PRAYER TIMETABLE PAGE ────────────────────────────────────────────── */
.pt-page { background: #f0f4f8; padding: 32px 28px 60px; }
.pt-page-inner { max-width: 1200px; margin: 0 auto; }
.pt-month-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.pt-month-title {
  font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700;
  color: #1a2a3a; white-space: nowrap;
}
.pt-month-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #d0dce8; border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: #216eb6;
  text-decoration: none; transition: background 0.15s; white-space: nowrap;
}
.pt-month-link:hover { background: #e8f0fa; }
.pt-jummah-note {
  background: #fff8ed; border: 1px solid #f0c878; border-radius: 8px;
  padding: 10px 16px; margin-bottom: 20px; font-size: 13px; color: #6a4a00;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pt-today-card {
  background: #fff; border-radius: 10px; padding: 20px 24px;
  margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pt-today-card h3 {
  font-size: 11px; font-weight: 700; color: #8aabcc;
  text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px;
}
.pt-today-table { width: 100%; border-collapse: collapse; }
.pt-today-table th {
  font-size: 11px; font-weight: 700; color: #8aabcc;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 10px; text-align: center;
}
.pt-today-table th.pt-tt-cur { color: #c8963e; }
.pt-today-table td { padding: 5px 10px; text-align: center; font-size: 14px; font-weight: 600; color: #1a2a3a; }
.pt-today-table td.pt-tt-label { text-align: left; font-size: 11px; font-weight: 700; color: #8aabcc; text-transform: uppercase; letter-spacing: 0.06em; }
.pt-today-table td.pt-tt-cur { color: #c8963e; }
.pt-today-table td.pt-tt-muted { color: #c0d0e0; }
.pt-table-wrap { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow-x: auto; }
.pt-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.pt-table thead tr { background: #0f2a4a; }
.pt-table thead th {
  color: #8aabcc; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 12px 10px; text-align: center; white-space: nowrap;
}
.pt-table thead th.pt-th--day { text-align: left; padding-left: 16px; }
.pt-table thead th.pt-th--prayer { color: #fff; }
.pt-table thead th.pt-th--sun { color: #f0b040; }
.pt-table tbody tr { border-bottom: 1px solid #eef2f8; }
.pt-table tbody tr:last-child { border-bottom: none; }
.pt-table tbody tr:hover:not(.pt-row--today) { background: #f8fafc; }
.pt-row--today { background: #fff8ed !important; }
.pt-row--friday { background: #f8f4ff; }
.pt-day-cell { padding: 8px 8px 8px 16px; min-width: 80px; vertical-align: middle; }
.pt-day-num { display: block; font-size: 18px; font-weight: 700; color: #1a2a3a; line-height: 1.1; }
.pt-day-name { display: block; font-size: 10px; color: #8aabcc; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.pt-row--today .pt-day-num { color: #c8963e; }
.pt-row--today .pt-day-name { color: #c8963e; }
.pt-row--friday .pt-day-name { color: #9060c0; }
.pt-cell { padding: 8px 10px; text-align: center; vertical-align: middle; }
.pt-begins { display: block; font-size: 11px; color: #8aabcc; line-height: 1.2; }
.pt-iqamah { display: block; font-size: 15px; font-weight: 700; color: #1a2a3a; line-height: 1.2; }
.pt-cell--sun .pt-iqamah { font-size: 13px; font-weight: 500; color: #8aabcc; }
.pt-cell--fri .pt-iqamah { color: #7848b0; }
.pt-row--today .pt-iqamah { color: #8a5a00; }
.pt-no-data { padding: 40px; text-align: center; color: #6a8aaa; font-size: 15px; }

@media (max-width: 768px) {
  .pt-page { padding: 16px 0 60px; }
  .pt-page-inner { padding: 0 12px; }
  .pt-month-title { font-size: 1.1rem; }
  .pt-month-link { padding: 6px 12px; font-size: 12px; }
  .pt-today-card { padding: 14px 12px; border-radius: 8px; }
  .pt-today-table th, .pt-today-table td { padding: 4px 6px; font-size: 12px; }
  .pt-table thead th { padding: 8px 5px; font-size: 9px; }
  .pt-day-cell { padding: 6px 4px 6px 8px; min-width: 50px; }
  .pt-day-num { font-size: 14px; }
  .pt-day-name { font-size: 9px; }
  .pt-cell { padding: 6px 4px; }
  .pt-begins { font-size: 10px; }
  .pt-iqamah { font-size: 13px; }
  .pt-cell--sun .pt-iqamah { font-size: 11px; }
}

/* ── EVENTS PAGE ──────────────────────────────────────────────────────── */
.ev-page { background: #f0f4f8; padding: 40px 28px 60px; }
.ev-page-inner { max-width: 860px; margin: 0 auto; }
.ev-page-title {
  font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 700;
  color: #1a2a3a; margin: 0 0 24px;
}
.ev-grid { display: flex; flex-direction: column; gap: 16px; }
.ev-card {
  background: #fff; border-radius: 10px; padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #c8963e;
}
.ev-card-date {
  font-size: 12px; font-weight: 700; color: #c8963e;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.ev-card-title { font-size: 1.15rem; font-weight: 700; color: #1a2a3a; margin: 0 0 10px; }
.ev-card-desc { font-size: 14px; color: #4a6a8a; line-height: 1.65; margin-bottom: 10px; }
.ev-card-location { font-size: 13px; color: #6a8aaa; margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.ev-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: #216eb6; text-decoration: none; font-size: 13px; font-weight: 600;
}
.ev-card-link:hover { text-decoration: underline; }
.ev-empty { text-align: center; padding: 60px 20px; color: #6a8aaa; background: #fff; border-radius: 10px; }
.ev-empty-icon { font-size: 3rem; margin-bottom: 16px; color: #c0d0e0; }
.ev-empty p { font-size: 15px; margin-bottom: 8px; }
.ev-empty-sub { font-size: 14px; }
.ev-empty-sub a { color: #216eb6; }

@media (max-width: 768px) {
  .ev-page { padding: 20px 12px 60px; }
  .ev-card { padding: 16px; border-radius: 8px; }
  .ev-page-title { font-size: 1.3rem; margin-bottom: 16px; }
}

/* ── PRAYERS PAGE: TODAY/TOMORROW CARDS ───────────────────────────────── */
.prayers-today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .prayers-today-grid { grid-template-columns: 1fr; }
}

.prayers-day-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.prayers-day-card--today { border-top: 3px solid #216eb6; }
.prayers-day-card--tomorrow { border-top: 3px solid #e0e8f0; opacity: 0.92; }

.prayers-day-card-header {
  background: #1a3a5c;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.prayers-day-card-header .date { font-weight: 600; font-size: 13px; }
.prayers-day-card-header .hijri { color: #8aabcc; font-size: 11px; margin-top: 2px; }

.prayers-live-badge { font-size: 10px; color: #4caf50; font-weight: 700; letter-spacing: 0.04em; }
.prayers-jummah-badge { font-size: 10px; color: #f0b040; font-weight: 700; letter-spacing: 0.04em; }
.prayers-jummah-badge .ti { font-size: 9px; }

.prayers-day-card-body { }
.prayers-day-card-empty { padding: 20px 16px; font-size: 13px; color: #6a8aaa; }

/* Card prayer table */
.prayers-day-table { width: 100%; border-collapse: collapse; }
.prayers-day-table thead th {
  font-size: 10px; font-weight: 700; color: #1a5490;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 8px 4px; text-align: center;
  background: #eef4fa; border-bottom: 1px solid #d0dcea;
}
.prayers-day-table thead th:first-child { text-align: left; padding-left: 12px; width: 52px; }
.prayers-day-table thead th.mpc--cur { background: #c8963e; color: #fff; }
.prayers-day-table tbody td {
  padding: 7px 4px; text-align: center;
  font-size: 13px; font-weight: 600; color: #1a2a3a;
  border-bottom: 0.5px solid #eef2f6;
}
.prayers-day-table tbody tr:last-child td { border-bottom: none; }
.prayers-day-table tbody td.mpc--cur { background: #c8963e; color: #fff; }
.prayers-day-table--tomorrow thead th { color: #4a6a8a; background: #f4f8fc; }
.prayers-day-table--tomorrow tbody td { color: #4a6a8a; font-weight: 500; }
.pdc-label {
  text-align: left !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  color: #8aabcc !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 12px !important;
}

/* Card footer (shouruq / jum'ah) */
.prayers-day-footer {
  display: flex;
  gap: 16px;
  padding: 8px 12px;
  font-size: 12px;
  color: #4a6a8a;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
}
.prayers-day-footer strong { color: #1a2a3a; font-weight: 600; }

/* Current prayer banner */
.prayers-current-banner {
  padding: 8px 14px;
  font-size: 12px; font-weight: 600;
  color: #c8963e;
  background: #fff8ed;
  border-top: 1px solid #f0e0c0;
  text-align: center;
}
.prayers-current-banner--makrooh { color: #c44020; background: #fff0ec; border-top-color: #f0c0b0; }
.prayers-current-banner--ishraq  { color: #a06010; background: #fffbe8; border-top-color: #e8d880; }

/* ── Section heading for full timetable ──────────────────────────────── */
.pt-section-heading {
  font-family: 'Lora', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #1a2a3a; margin: 0 0 16px;
}
@media (max-width: 768px) { .pt-section-heading { font-size: 1.05rem; margin-bottom: 12px; } }

/* ── Download timetable section ──────────────────────────────────────── */
.prayers-download-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #c8963e;
}
.prayers-download-section h3 {
  font-size: 1rem; font-weight: 700; color: #1a2a3a; margin: 0 0 6px;
}
.prayers-download-section p {
  font-size: 13px; color: #4a6a8a; margin: 0 0 14px; line-height: 1.5;
}
.prayers-btn-outline {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #216eb6;
  border-radius: 6px;
  color: #216eb6; font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.prayers-btn-outline:hover { background: #216eb6; color: #fff; }
@media (max-width: 768px) {
  .prayers-download-section { padding: 16px; margin-bottom: 24px; }
}

/* Donate page */
.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
.donate-widget-col { position: sticky; top: 20px; }
.donate-mobile-cta { display: none; }
.donate-dd-btn { color: white !important;
  display: block;
  background: #216eb6;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 8px;
}
.donate-dd-btn:hover { background: #1a5a9e; color: white; }
.donate-bank-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.donate-bank-table td { padding: 8px 10px; border-bottom: 1px solid #eee; font-size: 14px; }
.donate-bank-table td:first-child { font-weight: 600; color: #444; width: 40%; }
.donate-charity-note { margin-top: 32px; font-size: 12px; color: #888; text-align: center; }

@media (max-width: 767px) {
  .donate-page-grid { grid-template-columns: 1fr; }
  .donate-widget-col { display: none; }
  .donate-mobile-cta { display: block; }
}
.mob-footer-privacy { display:block; text-align:center; color:#8bafc9; font-size:0.75rem; margin-top:0.5rem; text-decoration:none; }
