@import url("https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap");

:root {
  --ink: #24160d;
  --muted: #76695d;
  --paper: #ffffff;
  --surface: #f7f3ec;
  --line: #e4dacb;
  --brand: #3e1a06;
  --brand-2: #8b5a20;
  --gold: #d8b45f;
  --green: #2f6f55;
  --shadow: 0 14px 38px rgba(62, 26, 6, 0.12);
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip,
.main-nav,
.content-section,
.statement-band,
.feature-layout,
.contact-strip,
.footer-inner,
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.top-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--brand);
  color: var(--gold);
  font-size: 25px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--brand);
  padding: 4px;
  flex: 0 0 auto;
}

.custom-logo {
  max-width: 160px;
  max-height: 62px;
  width: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .current-menu-item a {
  color: var(--brand);
  background: rgba(216, 180, 95, 0.18);
}

.menu-toggle,
.search-toggle,
.search-form button,
.primary-link,
.secondary-link {
  min-height: 40px;
  border-radius: 7px;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  background: #f0e7da;
  color: var(--brand);
  padding: 0 12px;
}

.search-toggle {
  width: 40px;
  background: #f0e7da;
  color: var(--brand);
  font-size: 22px;
}

.search-panel {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 14px;
}

.search-panel.open {
  display: block;
}

.search-form {
  display: flex;
  gap: 10px;
}

input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
}

.search-form button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  padding: 0 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 540px;
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(62, 26, 6, 0.88), rgba(62, 26, 6, 0.52) 52%, rgba(62, 26, 6, 0.08));
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 40px;
  width: min(620px, calc(100% - 76px));
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  background: var(--gold);
  color: var(--brand);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 13px;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.daily-companion {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr) minmax(240px, 0.8fr);
  gap: 14px;
}

.daily-greeting,
.daily-prayers,
.daily-remembrance {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(62, 26, 6, 0.08);
  padding: 18px;
}

.daily-greeting h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.35;
}

.daily-greeting p,
.daily-remembrance p,
.daily-note {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.date-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  background: #f3eadc;
  color: var(--brand);
  font-size: 14px;
  white-space: nowrap;
}

.daily-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.daily-card-head strong,
.daily-card-head small {
  display: block;
}

.daily-card-head strong {
  font-size: 20px;
  color: var(--brand);
}

.daily-card-head small {
  color: var(--muted);
  margin-top: 2px;
}

#wiqaiahUseLocation {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffaf1;
  color: var(--brand);
  padding: 0 12px;
  cursor: pointer;
  white-space: nowrap;
}

.prayer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.prayer-grid div {
  min-height: 72px;
  border: 1px solid #eadfce;
  border-radius: 7px;
  background: #fbf7ef;
  padding: 10px;
}

.prayer-grid span,
.prayer-grid strong {
  display: block;
}

.prayer-grid span {
  color: var(--muted);
  font-size: 13px;
}

.prayer-grid strong {
  margin-top: 4px;
  font-size: 20px;
  color: var(--ink);
  direction: ltr;
  unicode-bidi: isolate;
}

.daily-note {
  margin-top: 10px;
  font-size: 13px;
}

.daily-remembrance p {
  color: var(--ink);
  font-size: 21px;
}

.whatsapp-subscribe {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fff9, #fff8ea);
  border: 1px solid #d7eadb;
  box-shadow: 0 12px 28px rgba(47, 111, 85, 0.1);
}

.whatsapp-copy h2 {
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1.35;
}

.whatsapp-copy p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.whatsapp-form {
  background: #fff;
  border: 1px solid #dfeadf;
  border-radius: 8px;
  padding: 14px;
}

.whatsapp-form label,
.whatsapp-form label span {
  display: block;
}

.whatsapp-form label {
  margin-bottom: 10px;
}

.whatsapp-form label span {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 4px;
}

.whatsapp-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 11px;
  background: #fff;
  color: var(--ink);
}

.whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.whatsapp-actions button,
.whatsapp-button {
  min-height: 42px;
  border-radius: 7px;
  padding: 0 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.whatsapp-actions button {
  border: 1px solid #cddfcc;
  background: #f8fff8;
  color: var(--green);
}

.whatsapp-button {
  border: 0;
  background: var(--green);
  color: #fff;
}

.whatsapp-form small {
  display: block;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
}

.content-section,
.statement-band,
.feature-layout,
.contact-strip {
  padding-top: 34px;
  padding-bottom: 12px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: 30px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section-card,
.post-card,
.no-results,
.single-article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.section-card {
  padding: 12px 12px 18px;
  min-height: 255px;
  display: block;
  overflow: hidden;
}

.section-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.section-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 14px;
  background: #efe5d6;
}

.section-card span {
  display: block;
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-card p,
.post-card p,
.single-header p,
.statement-band p,
.feature-text p {
  color: var(--muted);
  line-height: 1.8;
}

.statement-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  margin-top: 28px;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.statement-band h2 {
  font-size: 32px;
  line-height: 1.35;
  margin: 14px 0 0;
}

.supervisor-card {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: center;
}

.supervisor-photo {
  position: relative;
  min-height: 360px;
  border-radius: 9px;
  overflow: hidden;
  background: #efe7dc;
}

.supervisor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supervisor-content {
  min-width: 0;
}

.supervisor-card h2 {
  margin: 14px 0 8px;
  font-size: 30px;
}

.supervisor-statement {
  max-width: 740px;
}

.supervisor-statement p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 2;
  font-size: 18px;
}

.supervisor-statement p:last-child {
  margin-bottom: 0;
}

.live-section {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.live-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 24px;
}

.live-copy h2 {
  margin: 14px 0 10px;
  font-size: 30px;
}

.live-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.live-player {
  position: relative;
  min-height: 320px;
  border: 0;
  border-radius: 9px;
  padding: 0;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.live-player img,
.live-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.live-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 13, 0.34);
}

.live-player.is-playing::after {
  display: none;
}

.play-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 132px;
  height: 52px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brand);
  font-weight: 800;
}

.live-player small {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  border-radius: 6px;
  padding: 6px 9px;
}

.live-player.needs-link .play-badge {
  min-width: 240px;
}

.video-library-section {
  padding-top: 30px;
}

.video-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: stretch;
}

.video-stage {
  position: relative;
  min-height: 390px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
}

.video-stage img,
.video-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 13, 0.42);
}

.video-stage.is-playing::after {
  display: none;
}

.video-stage > div {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 20px;
}

.video-stage p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.video-list {
  display: grid;
  gap: 10px;
}

.video-choice {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  text-align: right;
  cursor: pointer;
}

.video-choice:hover,
.video-choice.is-active {
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(46, 26, 12, 0.08);
}

.video-choice img {
  width: 112px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  background: #eee;
}

.video-choice strong {
  display: block;
  line-height: 1.55;
}

.video-choice small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.video-play-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brand);
  font-weight: 800;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sample-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sample-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 16px;
}

.sample-group h3 {
  margin: 0 0 10px;
  color: var(--brand);
}

.sample-group ul {
  margin: 0;
  padding-right: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.post-card {
  overflow: hidden;
}

.post-thumb {
  position: relative;
  display: block;
  height: 190px;
  background-size: cover;
  background-position: center;
}

.placeholder-thumb {
  background: linear-gradient(135deg, #3e1a06, #d8b45f);
}

.post-card-body {
  padding: 15px;
}

.post-meta {
  color: var(--muted);
  font-size: 13px;
}

.post-card h3 {
  margin: 9px 0;
  font-size: 20px;
  line-height: 1.45;
}

.read-more {
  color: var(--brand);
  font-weight: 800;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: stretch;
}

.feature-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 24px;
}

.feature-text h2 {
  font-size: 30px;
  line-height: 1.35;
  margin: 14px 0 10px;
}

.feature-image {
  min-height: 330px;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.single-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px;
}

.single-article {
  overflow: hidden;
}

.single-header {
  padding: 30px 30px 18px;
}

.single-header h1 {
  font-size: 42px;
  line-height: 1.25;
  margin: 12px 0;
}

.single-image {
  margin: 0;
}

.single-image img {
  display: block;
  width: 100%;
}

.single-content {
  padding: 28px 30px;
  font-size: 18px;
  line-height: 1.95;
}

.single-content p {
  margin-top: 0;
}

.single-video-player {
  position: relative;
  min-height: 480px;
  background: var(--brand);
}

.single-video-player iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
}

.video-missing-link {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.single-footer {
  padding: 0 30px 30px;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-list a,
.page-numbers {
  background: #efe5d6;
  color: var(--brand);
  border-radius: 5px;
  padding: 7px 10px;
}

.page-numbers {
  display: inline-flex;
  margin-top: 18px;
  margin-left: 4px;
}

.page-numbers.current {
  background: var(--brand);
  color: #fff;
}

.not-found-page,
.no-results {
  padding: 30px;
}

.site-footer {
  margin-top: 34px;
  background: #24160d;
  color: #fff;
}

.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 18px;
  padding-bottom: 16px;
}

.footer-inner p,
.footer-inner small,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  display: none;
}

.footer-brand {
  flex: 0 0 auto;
  min-width: 260px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  gap: 12px;
}

.footer-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
}

.footer-contact-grid > a,
.footer-contact-grid > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-contact-grid > a::after,
.footer-contact-grid > span::after {
  content: "";
  width: 1px;
  height: 14px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-contact-grid > a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

.email-link {
  direction: ltr;
  unicode-bidi: isolate;
  text-transform: lowercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 4px 7px;
  color: #fff;
  min-width: 34px;
  font-size: 13px;
  text-align: center;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px;
  font-size: 13px;
}

.wpcf7 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.wpcf7 form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  direction: rtl;
}

.wpcf7 form p {
  display: contents;
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  max-width: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

.wpcf7 textarea,
.wpcf7-form-control-wrap[data-name="your-message"] {
  grid-column: 1 / -1;
}

.wpcf7 input[type="submit"] {
  justify-self: start;
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .main-nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 5;
  }

  .nav-links.open {
    display: block;
  }

  .nav-links ul {
    overflow-x: auto;
  }

  .section-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-companion {
    grid-template-columns: 1fr;
  }

  .whatsapp-subscribe {
    grid-template-columns: 1fr;
  }

  .statement-band,
  .feature-layout,
  .live-section,
  .supervisor-card,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 14px;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-contact > strong {
    display: none;
  }

  .footer-contact-grid {
    justify-content: flex-start;
  }

  .sample-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supervisor-photo {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .top-strip,
  .main-nav,
  .content-section,
  .daily-companion,
  .whatsapp-subscribe,
  .statement-band,
  .feature-layout,
  .live-section,
  .video-library-section,
  .contact-strip,
  .footer-inner,
  .single-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: 460px;
    margin: 14px;
  }

  .supervisor-card {
    padding: 18px 14px;
  }

  .supervisor-photo {
    min-height: 300px;
  }

  .supervisor-card h2 {
    font-size: 25px;
  }

  .supervisor-statement p {
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-overlay {
    right: 18px;
    left: 18px;
    bottom: 22px;
    width: auto;
  }

  .hero h1,
  .single-header h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .daily-companion {
    margin-top: 14px;
  }

  .daily-greeting h2 {
    font-size: 24px;
  }

  .whatsapp-copy h2 {
    font-size: 24px;
  }

  .whatsapp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .prayer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-grid,
  .post-grid,
  .sample-groups {
    grid-template-columns: 1fr;
  }

  .video-stage {
    min-height: 270px;
  }

  .video-choice {
    grid-template-columns: 92px 1fr;
  }

  .video-choice img {
    width: 92px;
    height: 64px;
  }

  .single-header,
  .single-content,
  .single-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .search-form {
    flex-direction: column;
  }

  .wpcf7 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wpcf7 form {
    grid-template-columns: 1fr;
  }
}
