/*
Theme Name: LTUMC Theme
Theme URI: https://staging.laketoxawayumc.org
Description: Lake Toxaway United Methodist Church — Heritage Classic design
Version: 2.5.2
Author: CT Tech Corp
*/

/* === VARIABLES === */
:root {
  --red: #C41230;
  --red-dark: #a30f27;
  --blue: #3598DB;
  --blue-dark: #2472AA;
  --navy: #1C1C1C;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --forest: #5A6B49;
  --white: #fff;
  --text: #2C2C2C;
  --text-light: #666;
  --border: #E0D9CE;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --max-width: 1200px;
  --font-display: 'Great Vibes', cursive;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: #fff; line-height: 1.6; border-top: 4px solid var(--red); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; }

/* Red accent heading pattern */
.section-heading { position: relative; margin-bottom: 0.25rem; }
.section-heading::before { content: ''; display: block; width: 36px; height: 3px; background: var(--red); margin-bottom: 12px; }
.section-subheading { color: var(--text-light); font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 2rem; font-weight: 400; }

/* Pull quote — heritage accent */
.pull-quote {
  border-left: 4px solid var(--red);
  background: var(--cream);
  padding: 20px 28px;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
  font-family: var(--font-body);
}

/* Heritage rule divider */
.heritage-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0;
  color: var(--text-light);
  font-size: 1rem;
}
.heritage-rule::before,
.heritage-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Callout boxes */
.callout {
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 4px solid;
  margin: 24px 0;
  font-size: 0.92rem;
}
.callout-info { background: #f0f4ff; border-color: #4a6fa5; color: #2c3e70; }
.callout-notice { background: #fff8f0; border-color: var(--red); color: var(--navy); }
.callout-nature { background: #f0f5ee; border-color: var(--forest); color: #2a3522; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }

/* === UTILITY BAR === */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: var(--font-body);
  padding: 8px 0;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
.utility-bar a { color: rgba(255,255,255,0.85); }
.utility-bar a:hover { color: #fff; text-decoration: none; }
.utility-info { display: flex; gap: 20px; align-items: center; }
.utility-info span { display: flex; align-items: center; gap: 6px; }
.utility-social { display: flex; gap: 12px; }
.utility-social a { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }

/* === LOGO ROW === */
.logo-row {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.logo-row .container { display: flex; justify-content: space-between; align-items: center; }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 90px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 1.6rem; color: var(--red); line-height: 1; }
.logo-tagline { text-align: right; font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.logo-tagline strong { display: block; color: var(--navy); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 2px; }
.logo-tagline .accent { color: var(--red); font-weight: 600; }

/* === PRIMARY NAV === */
.primary-nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}
.primary-nav .container { display: flex; align-items: stretch; }
.nav-menu { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  color: #fff; font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 18px; text-decoration: none;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { background: rgba(0,0,0,0.2); }
/* Dropdown */
.nav-menu .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--navy); z-index: 200; list-style: none; padding: 0; margin: 0; }
.nav-menu .sub-menu li { list-style: none; padding: 0; position: relative; }
.nav-menu .sub-menu .sub-menu { top: 0; left: 100%; }
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a { display: block; padding: 10px 16px; color: rgba(255,255,255,0.9); font-size: 0.82rem; font-family: var(--font-body); }
.nav-menu .sub-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

/* === PAGE BANNER (inner pages) === */
.page-banner {
  position: relative;
  background: var(--navy);
  min-height: 200px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.page-banner-content {
  position: relative; z-index: 1;
  padding: 32px 0;
  width: 100%;
}
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.page-banner h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }

/* === PAGE LAYOUT (inner pages) === */
.page-inner { padding: 48px 0; }
.page-inner .container { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.page-inner.no-sidebar .container { grid-template-columns: 1fr; }

/* Sidebar widgets */
.sidebar-widget { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.sidebar-widget-header { background: var(--cream); padding: 12px 16px; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.sidebar-widget-body { padding: 16px; }
.sidebar-widget-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.sidebar-widget-dark .sidebar-widget-body { padding: 16px; }
.sidebar-widget-dark h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.sidebar-widget-dark p, .sidebar-widget-dark a { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.sidebar-widget-dark a { color: rgba(255,255,255,0.85); }
.service-time-big { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; margin: 4px 0 8px; }
.service-time-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none; box-shadow: 0 4px 16px rgba(196,18,48,0.35); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: var(--cream); text-decoration: none; }
.btn-full { width: 100%; justify-content: center; }

/* === CARDS === */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}
.card-photo { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--blue); font-size: 0.88rem; font-weight: 600; margin-top: 12px; }
.card-link:hover { text-decoration: underline; }

/* 3-col card grid */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* Hub cards (ministries, portals) */
.hub-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.2s;
}
.hub-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.hub-card-icon { font-size: 2rem; margin-bottom: 14px; }
.hub-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.hub-card p { font-size: 0.88rem; color: var(--text-light); }

/* Ministry hub cards (red top accent) */
.ministry-hub-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  border-top: 3px solid var(--red);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ministry-hub-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.ministry-hub-card h3 { font-size: 1rem; margin-bottom: 8px; }
.ministry-hub-card p { font-size: 0.85rem; color: var(--text-light); }

/* === ANNOUNCEMENTS === */
.announcement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.announcement {
  padding: 0 0 0 20px;
  border-left: 3px solid var(--red);
}
.announcement-date {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 6px;
}
.announcement h3 { font-size: 1.05rem; margin-bottom: 8px; }
.announcement p { font-size: 0.9rem; color: var(--text-light); }

/* === STAFF CARDS === */
.staff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 24px; }
.staff-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; text-align: center; }
.staff-photo { aspect-ratio: 1/1; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-body { padding: 16px; }
.staff-body h3 { font-size: 1rem; margin-bottom: 4px; }
.staff-role { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.staff-bio { font-size: 0.82rem; color: var(--text-light); }
.staff-phone { font-size: 0.82rem; color: var(--red); margin-top: 8px; }

/* === COMM CARDS === */
.comm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.comm-card { background: var(--cream); border-radius: var(--radius); padding: 24px; text-align: center; }
.comm-icon { font-size: 2rem; margin-bottom: 12px; }
.comm-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.comm-card p { font-size: 0.82rem; color: var(--text-light); }

/* === FOOTER === */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-col p, .footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col ul { list-style: none; }
.footer-col strong { color: #fff; font-size: 0.88rem; display: block; margin-top: 12px; }
.footer-col strong:first-child { margin-top: 0; }
.footer-bottom { margin-top: 40px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* === HERO ZONE (shared bg — hero + welcome card) === */
.hero-zone {
  position: relative;
  background-size: cover;
  background-position: center 5%; /* shifted down ~40px equivalent */ /* pulled toward top — shows steeple + full facade */
  padding-bottom: 72px; /* space below welcome card before life-section */
}
/* === HERO (Layout 8) === */
.hero-l8 {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* background moved to .hero-zone */
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.3) 100%); pointer-events: none; }
.hero-quote {
  position: relative; z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  padding: 0 0 32px 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Welcome card (raised, overlapping — sits just below steeple, covers uneven eave) */
.welcome-card-wrap {
  position: relative;
  z-index: 2;
  margin-top: -220px;
  display: flex;
  gap: 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.welcome-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px;
  flex: 1;
}
.welcome-card h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 12px; }
.welcome-card p { color: var(--text-light); margin-bottom: 24px; }
.welcome-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.service-panel {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-panel-main .time { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.service-panel-main .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.service-panel-main .address { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 8px; line-height: 1.5; }
.service-panel-secondary { background: var(--cream); border-radius: var(--radius); padding: 12px 16px; }
.service-panel-secondary .label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.service-panel-secondary .value { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* === LIFE SECTION (3-photo cards) === */
.life-section { background: var(--cream); padding: 56px 0; margin-top: 0; }
.life-section h2 { text-align: center; margin-bottom: 8px; }
.life-section .section-subheading { text-align: center; }

/* === GIVE PAGE === */
.give-hero { background: var(--navy); color: #fff; padding: 48px 0; text-align: center; }
.give-hero h1 { color: #fff; margin-bottom: 16px; }
.give-ways { padding: 56px 0; }

/* === CONTACT FORM 7 === */
.wpcf7 { margin-top: 8px; }
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--blue);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; letter-spacing: 0.03em; }
.wpcf7 .wpcf7-submit {
  background: var(--red); color: #fff;
  border: 2px solid var(--red); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 28px; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.wpcf7 .wpcf7-submit:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(196,18,48,0.3);
}
.wpcf7 .wpcf7-not-valid-tip { color: var(--red); font-size: 0.78rem; margin-top: 4px; }
.wpcf7 .wpcf7-response-output { padding: 12px 16px; border-radius: var(--radius); margin-top: 16px; font-size: 0.88rem; border: 1px solid var(--border); }

/* GiveWP notice override */
.give-form .give-notice { border-left: 3px solid var(--red); background: var(--cream); padding: 12px 16px; margin-bottom: 20px; font-size: 0.88rem; }

/* === MINISTRY HUB GRID === */
.ministry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 0; }
@media (max-width: 1024px) { .ministry-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .ministry-grid { grid-template-columns: 1fr; } }

/* === INNER PAGE — default page.php sidebar grid === */
.page-sidebar-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 768px) { .page-sidebar-grid { grid-template-columns: 1fr; } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .page-inner .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .announcement-grid { grid-template-columns: 1fr; }
  .announcement { padding: 0 0 0 16px; }
  .welcome-card-wrap { flex-direction: column; margin-top: -40px; }
  .service-panel { min-width: unset; }
  .comm-grid { grid-template-columns: repeat(2,1fr); }
  .nav-menu { display: none; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .staff-grid { grid-template-columns: 1fr; }
  .comm-grid { grid-template-columns: 1fr; }
}

/* === WP DEFAULTS FIX === */
.wp-block-search { display: none; }
.widget { display: none; }
img.wp-post-image { display: none; }

/* === H2 RED ACCENT (inner page content headings) === */
.page-content h2::before,
.container > h2::before,
.contact-grid h2::before,
.page-inner h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-bottom: 10px;
}

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.contact-info-block h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; font-size: 0.95rem; line-height: 1.5; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; width: 24px; text-align: center; }
.contact-row a { color: var(--blue); }
.contact-row a:hover { color: var(--blue-dark); text-decoration: underline; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* =============================================================
   MOBILE — v2.4.0 (hamburger + responsive polish)
   ============================================================= */

/* --- Hamburger button (hidden on desktop) --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* Mobile nav — hidden until toggled */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 200;
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > li > a {
    padding: 13px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu > li:last-child > a { border-bottom: none; }

  /* Mobile dropdown (sub-menu) */
  .nav-menu li:hover > .sub-menu { display: none; }
  .nav-menu li.sub-open > .sub-menu {
    display: block;
    position: static;
    background: rgba(255,255,255,0.07);
    min-width: unset;
    box-shadow: none;
  }

  /* Utility bar — keep phone only */
  .utility-info span:nth-child(2),
  .utility-info span:nth-child(3) { display: none; }

  /* Logo row — center, hide tagline */
  .logo-tagline { display: none; }
  .logo-row .container { justify-content: center; }

  /* Hero quote — tighten padding */
  .hero-quote { padding: 0 16px 20px 20px; }
}

@media (max-width: 480px) {
  /* Tighter container padding on phones */
  .container { padding: 0 16px; }

  /* Page banner smaller on phones */
  .page-banner { min-height: 140px; }

  /* Footer bottom — stack two lines */
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

  /* Welcome card — reduce padding */
  .welcome-card { padding: 24px 20px; }
  .service-panel { padding: 20px 20px; }
}

/* === MEMBER NAV / LOGIN BUTTON === */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-login-btn:hover {
  background: rgba(0,0,0,0.2);
  color: #fff;
}
.nav-member-wrap {
  position: relative;
  margin-left: 10px;
}
.nav-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-member-btn:hover,
.nav-member-btn[aria-expanded="true"] {
  background: rgba(0,0,0,0.2);
}
.nav-member-icon { line-height: 1; font-style: normal; }
.member-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  min-width: 200px;
  z-index: 300;
  overflow: hidden;
}
.member-dropdown.is-open { display: block; }
.member-dd-who {
  padding: 12px 16px;
  background: var(--cream);
  border-bottom: 1px solid #E2E2E2;
}
.member-dd-name {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.member-dd-email {
  font-size: 11px;
  color: #6B6B6B;
  margin-top: 2px;
}
.member-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s;
}
.member-dropdown a:last-child { border-bottom: none; }
.member-dropdown a:hover { background: var(--cream); }
.member-dd-signout { color: var(--red) !important; font-weight: 600; }
@media (max-width: 768px) {
  .nav-login-btn { font-size: 0.8rem; padding: 14px 10px; }
  .nav-member-wrap { margin-left: 0; }
  .nav-member-btn { font-size: 0.8rem; padding: 14px 10px; }
  .member-dropdown { right: -4px; min-width: 190px; }
}

/* === MEMBER PORTAL PAGES === */
.member-page-wrap {
  min-height: 60vh;
  background: #EDECEA;
  padding: 40px 0 60px;
}
.member-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.member-page-title {
  font-family: 'Lora', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 24px;
}
.member-card {
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.member-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E2E2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
}
.member-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .member-grid-3 { grid-template-columns: 1fr; }
}

/* === LOGIN PAGE === */
.member-login-bg {
  min-height: 70vh;
  background: linear-gradient(rgba(20,20,20,0.65), rgba(20,20,20,0.65)),
    url('') center/cover no-repeat, var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.member-login-card {
  background: #fff;
  border-radius: 10px;
  padding: 42px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.38);
}

.member-login-card h2 {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.member-login-sub {
  font-size: 13px;
  color: #6B6B6B;
  margin-bottom: 24px;
}
.mf-group { margin-bottom: 16px; }
.mf-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 5px;
}
.mf-group input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #E2E2E2;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--navy);
  background: #fafafa;
}
.mf-group input:focus { outline: none; border-color: var(--red); }
.member-login-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E2E2E2;
  font-size: 12px;
  color: #6B6B6B;
  text-align: center;
  line-height: 1.7;
}
.member-login-note a { color: #2472AA; text-decoration: none; }
.member-restricted {
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 500px;
}
.member-restricted h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy);
}
.member-restricted p { font-size: 15px; color: #6B6B6B; margin-bottom: 20px; }
.btn-red {
  display: inline-block;
  padding: 12px 30px;
  background: var(--red);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.btn-red:hover { background: #9B0E25; }

/* === MEMBER PORTAL SUB-NAV === */
.member-subnav {
  display: flex;
  gap: 2px;
  margin-bottom: 28px;
  border-bottom: 2px solid #E2E2E2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.member-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6B6B6B;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.member-subnav a:hover { color: var(--navy); }
.member-subnav a.active { color: var(--red); border-bottom-color: var(--red); }
@media (max-width: 768px) {
  .member-subnav { gap: 0; }
  .member-subnav a { padding: 9px 12px; font-size: 12px; }
}


/* === HEADER SEARCH === */
.header-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.header-search__input {
  background: none;
  border: none;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  width: 180px;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}
.header-search__input::placeholder { color: rgba(255,255,255,0.65); }
.header-search__btn {
  background: none;
  border: none;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.header-search__btn:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 900px) {
  .header-search { display: none; }
}

/* === SEARCH RESULTS === */
.search-result-item h3 a:hover { text-decoration: underline; }

/* =============================================================
   LTUMC — Accessibility, Mobile & UX Patch
   Applied: 2026-03-22
   ============================================================= */

/* ── Skip to content link ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ── Global focus-visible (WCAG 2.1 AA) ──────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Login / member form inputs — replace outline:none with visible ring */
.mf-group input:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus,
.header-search__input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,18,48,0.18);
}

/* Buttons always get a visible focus ring */
.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-member-btn:focus-visible,
.nav-login-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ── Keyboard-accessible desktop dropdown ─────────────────── */
.nav-menu li:focus-within > .sub-menu { display: block; }

/* ── Hero section — reduce height on mobile ──────────────── */
@media (max-width: 640px) {
  .hero-l8 { min-height: 300px; }
  .hero-quote { font-size: 1rem; padding: 0 16px 20px; }
}
@media (max-width: 768px) {
  .hero-l8 { min-height: 380px; }
}

/* ── Card grids — smooth 3 → 2 → 1 breakpoints ──────────── */
/* Override the hard 768px → 1col collapse */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .announcement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .announcement-grid { grid-template-columns: 1fr; }
}

/* ── Hover transforms — only on pointer devices ──────────── */
/* Remove transforms on touch; prevents tap flash-of-lift */
@media (hover: hover) and (pointer: fine) {
  .card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.13); transform: translateY(-3px); }
  .hub-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); border-color: var(--blue); }
  .ministry-hub-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
  .btn:hover { transform: translateY(-1px); }
  .btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none; box-shadow: 0 4px 16px rgba(196,18,48,0.35); }
}
/* On touch devices: card/btn hover states show only colour change, no lift */
@media (hover: none) {
  .card, .hub-card, .ministry-hub-card { transition: box-shadow 0.25s; }
  .card:active, .hub-card:active, .ministry-hub-card:active {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  }
}

/* ── Footer social icon sizing ───────────────────────────── */
.footer-social a { width: 36px; height: 36px; }
.footer-social svg { width: 16px; height: 16px; }

/* ── Utility bar social icon sizing ──────────────────────── */
.utility-social a { width: 28px; height: 28px; }
.utility-social svg { width: 14px; height: 14px; }

/* ── Touch targets — minimum 44x44px ─────────────────────── */
.nav-menu > li > a { min-height: 44px; }
.footer-social a, .utility-social a { min-width: 44px; min-height: 44px; }
@media (max-width: 768px) {
  .nav-menu > li > a { min-height: 48px; padding-top: 12px; padding-bottom: 12px; }
  .nav-login-btn, .nav-member-btn { min-height: 44px; }
}

/* ── Welcome card — safer mobile overlap ─────────────────── */
@media (max-width: 480px) {
  .welcome-card-wrap { margin-top: -24px; }
}

/* ── Member portal responsive ────────────────────────────── */
@media (max-width: 640px) {
  .member-grid-3 { grid-template-columns: 1fr; }
  .member-page-inner { padding: 0 16px; }
  .member-page-title { font-size: 22px; }
  .member-card { padding: 16px; }
}

/* ── Print styles ─────────────────────────────────────────── */
@media print {
  .utility-bar,
  .primary-nav,
  .nav-toggle,
  .header-search,
  .footer-social,
  .footer-bottom,
  .btn,
  .page-banner-bg,
  .member-subnav { display: none !important; }

  body {
    border-top: none;
    font-size: 12pt;
    color: #000;
  }

  .logo-row { border-bottom: 1pt solid #ccc; padding: 8px 0; }
  .logo-tagline { display: block !important; }

  .page-inner .container,
  .page-sidebar-grid,
  .contact-grid { grid-template-columns: 1fr !important; }

  .site-footer {
    background: none;
    color: #000;
    padding: 16px 0;
    border-top: 1pt solid #ccc;
  }
  .footer-col h4, .footer-col p, .footer-col a, .footer-col li { color: #000 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }

  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  a[href^="tel"]::after,
  a[href^="mailto"]::after,
  a[href^="/"]::after,
  a[href^="#"]::after { content: ""; }

  .hero-l8 { min-height: 80px; }
  .hero-overlay { display: none; }
  .hero-quote { color: #000; text-shadow: none; }
  .welcome-card-wrap { margin-top: 8px; flex-direction: column; }
  .service-panel { background: #f5f5f5; color: #000; }
  .service-panel-main .time { color: #000; }
  .service-panel-main .label, .service-panel-main .address { color: #555; }

  .life-section { background: none; padding: 16px 0; }
  .card { border: 1pt solid #ccc; box-shadow: none; break-inside: avoid; }
  .card-photo { display: none; }
}

/* === LOGO ROW LAYOUT FIX (2026-03-22) === */
/* Give tagline flex:1 so it grows into the middle, pushing logo left and search right */
.logo-tagline {
  flex: 1;
  padding: 0 32px;
}
/* Remove competing margin-left:auto from search — flex:1 on tagline handles the layout */
.header-search {
  margin-left: 0;
}
/* ── Hero image — maximize church visibility ──────────────── */
/* background is on .hero-zone (not .hero-l8) — position set in base rule above */

/* Layered overlay: vignette edges + strong bottom fade for text */
.hero-overlay {
  background:
    radial-gradient(ellipse 120% 100% at 50% 0%, transparent 45%, rgba(0,0,0,0.28) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.58) 78%,
      rgba(0,0,0,0.72) 100%);
}

/* ── Hero — mobile crop adjustments ──────────────────────── */
/* Tablet: 380px tall → image crops heavily; keep steeple in frame */
@media (max-width: 768px) {
  .hero-zone { background-position: center 10%; }
  .welcome-card-wrap { margin-top: -120px; }
  .hero-quote {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    padding: 0 20px 20px;
  }
}

/* Phone: 300px tall → image nearly fits; top-crop keeps facade */
@media (max-width: 640px) {
  .hero-zone { background-position: center 5%; }
  .welcome-card-wrap { margin-top: -60px; }
  /* Stronger bottom fade on small screen for quote legibility */
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.22) 35%,
        rgba(0,0,0,0.65) 75%,
        rgba(0,0,0,0.78) 100%);
  }
}

@media (max-width: 420px) {
  .hero-quote { padding: 0 12px 14px; font-size: 0.9rem; }
}

/* ── Utility bar — address pushed to far right ────────────── */
/* utility-info expands to fill space; last span (address) floats right */
.utility-info { flex: 1; }
.utility-info span:last-child {
  margin-left: auto;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
/* On mobile, address is already hidden — no change needed */

/* ── Remove red tick decorators from section headings ─────── */
.section-heading::before,
.page-content h2::before,
.container > h2::before,
.contact-grid h2::before,
.page-inner h2::before { display: none; }\

/* ── Nav search — in primary nav bar ─────────────────────── */
.nav-search {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.nav-search__input {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
  border-right: none !important;
  border-radius: 20px 0 0 20px !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  padding: 0 14px !important;
  width: 150px !important;
  height: 32px !important;
  line-height: 32px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background 0.2s, width 0.3s ease;
}
.nav-search__input::-webkit-search-cancel-button,
.nav-search__input::-webkit-search-decoration { display: none !important; }
.nav-search__input::placeholder { color: rgba(255,255,255,0.68); }
.nav-search__input:focus {
  background: rgba(0,0,0,0.38) !important;
  border-color: rgba(255,255,255,0.80) !important;
  width: 210px !important;
}
.nav-search__btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: rgba(255,255,255,0.16) !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
  border-left: none !important;
  border-radius: 0 20px 20px 0 !important;
  color: #fff !important;
  height: 32px !important;
  width: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  transition: background 0.2s;
}
.nav-search__btn:hover { background: rgba(255,255,255,0.30) !important; }
.nav-search__btn svg { stroke: #fff !important; }
@media (max-width: 960px) { .nav-search { display: none; } }

/* ── Logo row — tagline fills full remaining space ─────────── */
.logo-tagline { flex: 1; padding: 0 24px 0 32px; }
.header-search { display: none !important; }

/* ── Utility bar social icons — polished ─────────────────── */
.utility-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  min-width: 44px; min-height: 44px;
}
.utility-social a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.utility-social svg { width: 14px; height: 14px; }

/* ── Nav search — fix button wrapping ────────────────────── */
.nav-search { flex-wrap: nowrap !important; align-items: center !important; }
.nav-search__btn {
  min-height: unset !important;
  min-width: unset !important;
  height: 32px !important;
  width: 36px !important;
  align-self: center !important;
}

/* ── Nav search flex — force override UA/plugin form display ─ */
form.nav-search { display: flex !important; flex-wrap: nowrap !important; align-items: center !important; gap: 0 !important; }

/* Push nav search to far right of nav bar */
.nav-search { margin-left: auto !important; }

/* ── Officers / data table ─────────────────────────────────── */
.officers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 4px;
}
.officers-table thead tr {
  border-bottom: 2px solid var(--red);
}
.officers-table th {
  text-align: left;
  padding: 10px 12px 10px 0;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.officers-table th:not(:first-child) { padding-left: 12px; }
.officers-table td {
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.officers-table td:not(:first-child) { padding-left: 12px; }
.officers-table tr.alt td { background: var(--cream); }
.officers-table .role-col { min-width: 140px; }
.officers-table .members-col { color: var(--text-light); }
@media (max-width: 640px) {
  .officers-table thead { display: none; }
  .officers-table tr { display: block; margin-bottom: 12px; background: var(--cream); border-radius: 6px; padding: 10px; }
  .officers-table td { display: block; padding: 4px 0; border: none; }
  .officers-table .role-col { font-weight: 700; color: var(--navy); }
}

/* ── Staff grid — 3-col when no saunders, 4-col otherwise ──── */
.staff-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .staff-grid { grid-template-columns: 1fr; } }

/* ── Staff card photo fix ──────────────────────────────────── */
.staff-photo { aspect-ratio: 1/1; overflow: hidden; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.staff-body { padding: 14px 16px 16px; }
.staff-body h3 { font-size: 0.95rem; margin: 0 0 4px; }
.staff-role { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); margin-bottom: 8px; }
.staff-bio { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; margin: 0 0 8px; }
.staff-phone { font-size: 0.82rem; }
.staff-phone a { color: var(--navy); text-decoration: none; font-weight: 600; }

/* ── About page sidebar grid fix ──────────────────────────── */
@media (max-width: 900px) {
  .container > .page-sidebar-grid,
  div[style*="grid-template-columns:1fr 340px"] { grid-template-columns: 1fr !important; }
}

/* ── Page banner photo position override ─────────────────── */
.page-banner-bg { background-position: center 30%; }
