.mosque-directory-intro {
  text-align: center;
  margin-bottom: 1rem;
}

/* "At a glance" counters row - single-counter/count_one../sc_one..
   taken directly from the Purdue theme's counter section
   (https://themewagon.github.io/purdue/) for the same style/colors.
   Only two deviations from that source: no negative margin-top on the
   row (Purdue's counter overlaps a tall hero banner above it; this page
   has a plain text intro, not a banner, so a negative margin would
   overlap the heading instead), and the icon span gets flex centering
   since it holds an inline SVG here rather than an icon-font glyph. */
.mosque-stats-row {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.single-counter {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.04);
}

@media only screen and (max-width: 960px) {
  .single-counter {
    margin-bottom: 30px;
  }
}

.single-counter span {
  width: 50px;
  float: left;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
  color: #1a2d62;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-counter span svg {
  width: 24px;
  height: 24px;
}

.single-counter h2 {
  overflow: hidden;
  font-weight: 600;
  margin-bottom: 0;
}

.single-counter p {
  overflow: hidden;
}

.count_one {
  background: #e1f8ed;
}

.count_two {
  background: #ecebfd;
}

.count_three {
  background: #ecf7ff;
}

.count_four {
  background: #ffecec;
}

.sc_one {
  color: #f26b65;
  background: #52EDB5;
}

.sc_two {
  color: #2d36bb;
  background: #7EB2FF;
}

.sc_three {
  color: #57216c;
  background: #B77EFF;
}

.sc_four {
  color: #448bb7;
  background: #EFE37A;
}

/* The reference's `.single-counter h2/p { overflow: hidden }` (a
   float-containment trick) only stayed invisible in the source because
   its demo numbers were always 3 digits ("134", "941"...) - our real
   counts go up to "1.000.000", which that box is too narrow for, so it
   silently clips instead of just containing the float. Higher
   specificity than `.single-counter h2`/`.single-counter p` restores
   normal wrapping without touching anything else from that block. */
.single-counter .counter-num {
  overflow: visible;
  font-size: 2rem;
  font-family: 'Lexend', sans-serif;
}

.single-counter .mosque-stat-label {
  overflow: visible;
}

.mosque-directory-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.mosque-search-group {
  flex: 1 1 320px;
}


.mosque-directory-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mosque-map {
  flex: 2 1 480px;
  height: 520px;
  min-height: 320px;
  border-radius: 10px;
}

.mosque-list {
  flex: 1 1 280px;
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

.mosque-list-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.mosque-list-item:hover {
  background: #f7f7f7;
}

.mosque-list-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  background: #e8eef1;
}

.mosque-list-content {
  min-width: 0;
}

.mosque-list-name {
  text-transform: uppercase;
}

.mosque-list-city,
.mosque-list-facilities {
  font-size: 0.85rem;
  color: #666;
}

.mosque-list-rating {
  font-size: 0.85rem;
  color: #b8860b;
}

.mosque-verified-tag {
  background: #2e7d32;
  color: #fff;
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  font-size: 0.75rem;
}

.mosque-list-facility-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  margin: 0.3rem 0;
}

/* Color/shape/padding come from Bootstrap's .btn-group + .btn-{variant}
   classes (added alongside this one in mosque-map.js) so each facility
   reads as one segment of a joined button group - this class only
   tightens Bootstrap's default button size for the list row, and
   disables the pointer/hover affordance since these aren't clickable. */
.mosque-list-facility-badges .mosque-facility-badge {
  /* Bootstrap's .btn-group > .btn rule also has two-class specificity,
     and this module's CSS happens to load *before* the theme's on this
     page, so ties go to Bootstrap - !important is the reliable way to
     stop wrapped single badges from stretching to fill the row width. */
  flex: 0 0 auto !important;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
}

/* Color/border come from Bootstrap's .btn-outline-primary (added
   alongside this one in mosque-map.js); padding/font-size are forced
   down to the exact same extra-small size as .mosque-facility-badge.
   !important is required here for the same reason as the badge's flex
   override above: Bootstrap's same-specificity .btn-sm rule loads after
   this module's CSS on this page, so it would otherwise win the tie. */
.mosque-facility-more {
  padding: 0.15rem 0.5rem !important;
  font-size: 0.72rem !important;
  margin-left: 0.3rem;
}

/* Small-scale version of the detail page hero's "Petunjuk Arah" button
   (.mosque-hero-action-btn--primary) for the map/list sidebar's compact
   mosque cards. */
.mosque-list-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  /* Same radius as the adjacent "Lebih Detail" button (Bootstrap's
     .btn-sm default, 0.25rem), not a pill shape like the other list
     badges. */
  border-radius: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #664d03;
  text-decoration: none;
  margin-left: 0.3rem;
  background: linear-gradient(135deg, #ffc107, #ffca2c);
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.5);
  transition: transform 0.15s ease;
}

.mosque-list-directions-btn:hover {
  transform: scale(1.05);
  color: #664d03;
}

.mosque-distance-tag {
  background: #1976d2;
  color: #fff;
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  font-size: 0.75rem;
}

.mosque-location-status {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 1rem;
  min-height: 1.2em;
}

.mosque-list-empty {
  padding: 1rem;
  color: #666;
}

.mosque-highlights {
  margin-top: 2.5rem;
}

.mosque-highlights-search-group {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mosque-highlight-card {
  /* Clips the zoomed image below to its original footprint instead of
     spilling over the card's rounded corners. */
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mosque-highlight-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0.75rem 1.5rem rgba(23, 23, 36, 0.15) !important;
}

.mosque-highlight-img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mosque-highlight-card:hover .mosque-highlight-img {
  transform: scale(1.08);
}

#mosque-highlights-grid.mosque-highlights-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.mosque-highlights-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mosque-highlights-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mosque-highlights-page {
  min-width: 2.25rem;
}

.mosque-highlights-page-ellipsis {
  padding: 0 0.25rem;
  color: #666;
}

.mosque-highlights-first,
.mosque-highlights-prev,
.mosque-highlights-next,
.mosque-highlights-last {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mosque-highlight-type {
  letter-spacing: 0.03em;
}

.mosque-highlight-facilities {
  margin-bottom: 0.5rem;
}

/* Not wrapped in .btn-group (each facility is its own separate chip, not
   a joined segment), so unlike .mosque-list-facility-badges this needs no
   flex/!important override - just the same extra-small badge sizing. */
.mosque-highlight-facilities .mosque-facility-badge {
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
}

.mosque-highlight-toggle {
  padding: 0.15rem 0.5rem !important;
  font-size: 0.72rem !important;
}
p.mosque-stat-label{
  margin-bottom: 0;
}

/* ---- Mosque detail page (Hilux real-estate-template-inspired layout) ---- */

.mosque-detail-layout {
  margin-top: 1rem;
  align-items: flex-start;
}

.mosque-detail-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.mosque-checklist-col .fa-check {
  color: #2e7d32;
  margin-right: 0.3rem;
}

/* ---- Hero card (styled after SIMAS's own profile page hero) ---- */

.mosque-hero-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 30px 80px -20px rgba(13, 148, 136, 0.208), 0 0 0 1px rgba(13, 148, 136, 0.082);
}

.mosque-hero-image {
  position: relative;
  height: 420px;
  background: #111827;
  overflow: hidden;
}

@media (min-width: 576px) {
  .mosque-hero-image {
    height: 520px;
  }
}

.mosque-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosque-hero-bg.mosque-photo-fallback {
  object-fit: contain;
  background: #1f2937;
  padding: 3rem;
  opacity: 0.6;
}

.mosque-hero-gradient-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.3));
}

.mosque-hero-gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent 60%);
}

.mosque-hero-badges-top {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.mosque-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.mosque-hero-badge--primary {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.91), rgba(15, 118, 110, 0.91));
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.376), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mosque-hero-badge--glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mosque-hero-badge--success {
  background: rgba(25, 135, 84, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mosque-hero-badge--warning {
  background: rgba(255, 193, 7, 0.9);
  color: #664d03;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mosque-hero-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

@media (min-width: 576px) {
  .mosque-hero-overlay-bottom {
    padding: 2rem;
  }
}

.mosque-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

@media (min-width: 992px) {
  .mosque-hero-title {
    font-size: 2.5rem;
  }
}

.mosque-hero-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  max-width: 48rem;
}

.mosque-hero-address i {
  color: #fcd34d;
  margin-top: 0.25rem;
}

.mosque-hero-address span {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mosque-hero-location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mosque-hero-location-badge {
  display: inline-flex;
  align-items: center;
  /* display:flex/inline-flex collapses ordinary whitespace text nodes
     between child <span>s (the label/value markup has a literal space
     between them) - gap replaces that lost spacing explicitly. */
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mosque-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mosque-hero-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.mosque-hero-action-btn:hover {
  transform: scale(1.03);
  color: #fff;
}

.mosque-hero-action-btn--primary {
  background: linear-gradient(135deg, rgb(13, 148, 136), rgb(15, 118, 110));
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mosque-hero-action-btn--secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mosque-hero-action-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mosque-hero-info-bar {
  background: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.mosque-hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  /* Fixed width (not flex-grow) so a long email/website can't push into
     the next item's space - text-overflow below handles anything longer
     than this, with the full value available as a hover tooltip. */
  flex: 0 1 200px;
  text-decoration: none;
  color: inherit;
}

.mosque-hero-info-text {
  min-width: 0;
  overflow: hidden;
}

.mosque-hero-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.mosque-hero-info-icon--card {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.376), rgba(94, 234, 212, 0.25));
  color: rgb(15, 118, 110);
}

.mosque-hero-info-icon--phone {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.376), rgba(110, 231, 183, 0.25));
  color: rgb(4, 120, 87);
}

.mosque-hero-info-icon--email {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.376), rgba(125, 211, 252, 0.25));
  color: rgb(3, 105, 161);
}

.mosque-hero-info-icon--website {
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.376), rgba(253, 186, 116, 0.25));
  color: rgb(194, 65, 12);
}

.mosque-hero-info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  font-weight: 700;
}

.mosque-hero-info-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mosque-checklist-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.mosque-checklist-col {
  flex: 1 1 200px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mosque-checklist-col li {
  margin-bottom: 0.5rem;
  color: #444;
}

/* Drupal's datetime element has no built-in gap between its date and time
   sub-fields - #attributes on MosqueBookingForm's arrival_time element
   puts this class on their shared wrapper div. */
.mosque-booking-datetime > div + div {
  margin-top: 0.5rem;
}

.mosque-booking-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mosque-booking-actions > * {
  flex: 1 1 0;
  width: auto;
  margin: 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  .mosque-booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mosque-booking-actions > * {
    width: 100%;
  }
}

.mosque-detail-map-section {
  margin-bottom: 1.5rem;
}

.mosque-nearby-section {
  margin-bottom: 1.5rem;
}

.mosque-detail-map {
  height: 350px;
  border-radius: 10px;
}

.mosque-nearby-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mosque-nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(23, 23, 36, 0.12);
}

.mosque-nearby-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mosque-nearby-card:hover .mosque-nearby-img {
  transform: scale(1.05);
}

.mosque-nearby-content {
  padding: 1rem;
}

.mosque-nearby-name {
  display: block;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.mosque-nearby-location {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.mosque-detail-sidebar {
  position: sticky;
  top: 90px;
}

.mosque-sidebar-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.04);
}

.mosque-sidebar-box h4 {
  margin-bottom: 1rem;
}

.mosque-review-link {
  width: 100%;
}

/* The card itself scrolls horizontally (not each row individually) so a
   long email/URL keeps its "Label: value" pair together on one line
   instead of overflowing the sidebar - min-width:0 on the box lets it
   actually shrink to the sidebar's width rather than stretching the
   column to fit its widest row. */
.mosque-contact-box {
  overflow-x: auto;
  min-width: 0;
  scrollbar-width: thin;
}

.mosque-contact-box::-webkit-scrollbar {
  height: 4px;
}

.mosque-contact-box::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.mosque-contact-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.mosque-contact-label {
  flex-shrink: 0;
  font-weight: 700;
}

/* ---- SIMAS profile stat cards (styled after simas.kemenag.go.id's own
   mosque profile page - Pengurus/Imam/Khatib/Muazin/Remaja counts) ---- */

.mosque-stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  height: 100%;
  box-shadow: 0 10px 30px -8px var(--stat-shadow), 0 0 0 1px var(--stat-shadow-2);
}

.mosque-stat-card-glow {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s ease;
  background: radial-gradient(circle, var(--stat-color), transparent);
  pointer-events: none;
}

.mosque-stat-card:hover .mosque-stat-card-glow {
  opacity: 1;
}

.mosque-stat-card-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--stat-color), var(--stat-color-light));
}

.mosque-stat-card-body {
  position: relative;
}

.mosque-stat-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--stat-color), var(--stat-color-dark));
  box-shadow: 0 8px 20px var(--stat-icon-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mosque-stat-card-unit {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  opacity: 0.5;
  color: var(--stat-color-dark);
}

.mosque-stat-card-value {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1;
  margin: 0.5rem 0 0.35rem;
  font-variant-numeric: tabular-nums;
  color: var(--stat-color-dark);
}

.mosque-stat-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
}

.mosque-stat-card--teal {
  --stat-color: rgb(13, 148, 136);
  --stat-color-light: rgb(20, 184, 166);
  --stat-color-dark: rgb(15, 118, 110);
  --stat-shadow: rgba(13, 148, 136, 0.145);
  --stat-shadow-2: rgba(13, 148, 136, 0.063);
  --stat-icon-shadow: rgba(13, 148, 136, 0.333);
}

.mosque-stat-card--sky {
  --stat-color: rgb(2, 132, 199);
  --stat-color-light: rgb(14, 165, 233);
  --stat-color-dark: rgb(3, 105, 161);
  --stat-shadow: rgba(2, 132, 199, 0.145);
  --stat-shadow-2: rgba(2, 132, 199, 0.063);
  --stat-icon-shadow: rgba(2, 132, 199, 0.333);
}

.mosque-stat-card--amber {
  --stat-color: rgb(217, 119, 6);
  --stat-color-light: rgb(245, 158, 11);
  --stat-color-dark: rgb(180, 83, 9);
  --stat-shadow: rgba(217, 119, 6, 0.145);
  --stat-shadow-2: rgba(217, 119, 6, 0.063);
  --stat-icon-shadow: rgba(217, 119, 6, 0.333);
}

.mosque-stat-card--emerald {
  --stat-color: rgb(5, 150, 105);
  --stat-color-light: rgb(16, 185, 129);
  --stat-color-dark: rgb(4, 120, 87);
  --stat-shadow: rgba(5, 150, 105, 0.145);
  --stat-shadow-2: rgba(5, 150, 105, 0.063);
  --stat-icon-shadow: rgba(5, 150, 105, 0.333);
}

.mosque-stat-card--rose {
  --stat-color: rgb(225, 29, 72);
  --stat-color-light: rgb(244, 63, 94);
  --stat-color-dark: rgb(190, 18, 60);
  --stat-shadow: rgba(225, 29, 72, 0.145);
  --stat-shadow-2: rgba(225, 29, 72, 0.063);
  --stat-icon-shadow: rgba(225, 29, 72, 0.333);
}

/* ---- Jadwal Sholat (client-side PrayTimes.js widget) ---- */

.mosque-prayer-times-date {
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.mosque-prayer-times-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mosque-prayer-time {
  flex: 1 1 100px;
  text-align: center;
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  background: #f3f8f4;
  border: 1px solid #e0ece2;
}

.mosque-prayer-time--next {
  background: #2e7d32;
  border-color: #2e7d32;
}

.mosque-prayer-time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #2e7d32;
  opacity: 0.75;
}

.mosque-prayer-time--next .mosque-prayer-time-label {
  color: #fff;
  opacity: 0.85;
}

.mosque-prayer-time-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b5e20;
  margin-top: 0.2rem;
}

.mosque-prayer-time--next .mosque-prayer-time-value {
  color: #fff;
}

.mosque-prayer-times-note {
  font-size: 0.8rem;
  color: #777;
  margin: 1rem 0 0;
}
