:root {
  --bg: #f4f0e8;
  --surface: #ffffff;
  --surface-soft: #e8e0d2;
  --text: #24322b;
  --muted: #58655e;
  --heading: #1f3d2b;
  --border: #d6cab8;
  --primary: #1f3d2b;
  --primary-dark: #162e21;
  --accent: #d4af37;
  --accent-dark: #b8962e;
  --shadow: 0 18px 40px rgba(20, 32, 43, 0.10);
  --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.mobile-menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: linear-gradient(180deg, #e8e0d2 0%, #ece4d7 100%);
}

.section-label,
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.eyebrow-short {
  display: none;
}

.eyebrow-short-line {
  display: block;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--heading);
  line-height: 1.15;
  text-shadow: var(--text-shadow);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
}

.section-text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  text-align: center;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.centered .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-button-wrap {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 61, 43, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--heading);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(232, 224, 210, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 202, 184, 0.95);
  box-shadow: 0 10px 26px rgba(20, 32, 43, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex-shrink: 0;
}

.logo-image {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-name {
  display: flex;
  align-items: center;
  height: 58px;
  font-family: "Smythe", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  min-width: 0;
  flex: 1 1 auto;
}

.main-nav a {
  position: relative;
  color: var(--heading);
  font-family: "Smythe", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  border: 3px solid #d4af37;
  background: transparent;
  color: #1f2933;
  font-weight: 800;
  box-shadow: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: #d4af37;
  color: #1f3d2b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
}

.hero {
  padding: 6.5rem 0 5rem;
  background:
    linear-gradient(rgba(244, 240, 232, 0.78), rgba(244, 240, 232, 0.96)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.20), transparent 34%),
    radial-gradient(circle at bottom left, rgba(31, 61, 43, 0.08), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.service-card {
  width: 100%;
  max-width: 370px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(214, 202, 184, 0.9);
}

.service-label {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.service-card h2 {
  margin-bottom: 0.6rem;
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}

.service-meta {
  color: var(--muted);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.announcement-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #285139 100%);
  color: #fff;
  padding: 1rem 0;
}

.announcement-inner {
  text-align: center;
  font-weight: 500;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-card,
.feature-card,
.event-card,
.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(20, 32, 43, 0.05);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.image-block,
.media-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.media-block:not(.sermon-video-block) {
  min-height: 420px;
}

.image-block img,
.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ministry-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 32, 43, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ministry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 32, 43, 0.10);
}

.ministry-card-button {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  appearance: none;
  font: inherit;
}

.ministry-card-image {
  flex: 0 0 220px;
  min-height: 220px;
  overflow: hidden;
}

.ministry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ministry-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.35rem 1.2rem 1.4rem;
  text-align: center;
}

.ministry-card-content h3 {
  margin-bottom: 0.35rem;
  text-align: center;
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.ministry-card-content p {
  color: var(--muted);
  margin-bottom: 0;
  text-align: center;
  font-weight: 600;
}

.contact-intro {
  margin-inline: auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-form-wrap {
  margin-bottom: 2rem;
}

.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-card h3,
.contact-form-header h3 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-shadow: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--heading);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

.contact-form-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  text-align: center;
}

.contact-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 0.02em;
  text-shadow:
  1px 1px 1px #000,
  0 0 1em #999999,
  0 0 0.1em #999999;
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #404040;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.events-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sermon-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.sermon-content {
  text-align: center;
}

.sermon-content .btn {
  margin-inline: auto;
}

.sermon-date,
.event-date {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.giving-section {
  padding-top: 2rem;
}

.giving-box {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.sermon-video-block {
  min-height: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 25, 32, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: min(680px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(20, 32, 43, 0.22);
  overflow: hidden;
}

.modal-content {
  padding: 2rem;
}

.modal-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}

.modal-title {
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--primary);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.modal-content p {
  color: var(--muted);
  font-size: 1.03rem;
}

.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 61, 43, 0.08);
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: rgba(31, 61, 43, 0.14);
  transform: scale(1.04);
}

.site-footer {
  background: linear-gradient(180deg, #172028 0%, #121920 100%);
  color: rgba(255, 255, 255, 0.84);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.footer-panel {
  border-radius: 22px;
  padding: 1.75rem;
  min-height: 100%;
  text-align: center;
}

.footer-panel-hero {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    0 0 24px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(4px);
}

.footer-panel h3,
.footer-panel h4 {
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #d4af37;
  letter-spacing: 0.02em;
  font-size: 1.65rem;
  line-height: 1.15;
  text-wrap: balance;
  text-shadow:
  1px 1px 1px #000,
  0 0 1em #000,
  0 0 0.1em #000;
}  
}

.footer-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

.footer-info-list {
  text-align: center;
}

.footer-info-list p {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 1rem;
}

.footer-info-list strong {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
}

.footer-links li {
  margin: 0;
  text-align: center;
}

.footer-links a {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-brand-direct {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-brand-image {
  width: 120px;
  max-width: 100%;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-brand-name {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    text-shadow:
  1px 1px 1px #000,
  0 0 0em #000,
  0 0 0.1em #000;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  text-align: center;
}

.footer-bottom p {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    text-shadow:
  1px 1px 1px #000,
  0 0 0em #000,
  0 0 0.1em #000;
  margin-bottom: 0.75rem;  
}

section[id],
#contact-form {
  scroll-margin-top: 85px;
}

@media (max-width: 820px) {
  section[id],
  #contact-form {
    scroll-margin-top: 80px;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

@media (max-width: 440px) {
  section[id],
  #contact-form {
    scroll-margin-top: 70px;
  }

  .modal-content {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.45rem;
  }

  .modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

#visit-anchor {
  display: block;
  height: 60px;
  margin-top: -60px;
  visibility: hidden;
  pointer-events: none;
}

.sermon-video-block {
  min-height: 0 !important;
  height: auto !important;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.sermon-video-block .video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
}

.sermon-video-block iframe {
  display: block;
}

#about .image-block {
  min-height: 100%;
  height: 100%;
  line-height: 0;
}

#about .image-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-actions .btn:disabled,
.contact-form-actions .btn.is-submitting {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-field-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#turnstile-widget,
.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
}

#turnstile-widget iframe,
.cf-turnstile iframe {
  margin: 0 auto;
}

.contact-form {
  position: relative;
}

.event-card-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  appearance: none;
  font: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 32, 43, 0.10);
}

.event-card-button h3,
.event-card-button p {
  text-align: center;
}
/* ===== Event Modal Enhancements ===== */

.event-kicker {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Bigger, more readable modal content */
.modal-content {
  padding: 2.25rem; /* slightly more breathing room */
}

.modal-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem); /* slightly reduced from before */
  margin-bottom: 0.75rem;
}

/* Event modal body text */
.modal-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}

/* Date line styling */
.modal-content p strong {
  font-weight: 800;
  color: var(--primary);
}

/* Give spacing between sections */
.modal-content p + p {
  margin-top: 0.75rem;
}

/* Improve readability of long messages */
.modal-content p:last-of-type {
  margin-top: 1.1rem;
  font-size: 1.12rem;
  line-height: 1.75;
}

/* Slight visual upgrade to modal card */
.modal-dialog {
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(20, 32, 43, 0.28);
}

/* Make close button feel more premium */
.modal-close {
  background: rgba(31, 61, 43, 0.10);
  font-size: 1.6rem;
}

.modal-close:hover {
  background: rgba(31, 61, 43, 0.18);
  transform: scale(1.08);
}
.event-modal-date {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.sermon-highlight .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sermon-content p {
  white-space: normal;
}

.sermon-content .hero-actions {
  justify-content: center;
}
/* Latest Message layout tweak */
#latest-message .sermon-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

#latest-message .media-block {
  flex: 0 1 auto;
  max-width: none;
  width: auto;
  display: flex;
  justify-content: center;
  box-shadow: none;
  border: none;
  background: transparent;
  overflow: visible;
  padding: 0;
  border-radius: 0;
}

#latest-message .media-block img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

#latest-message .sermon-content {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#latest-message .sermon-content p {
  font-family: "Cinzel", serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-shadow: none;
  font-size: 1.1rem;
  max-width: 420px;
}