﻿/* MWPP Ministry Design System â€” Gold #D4AF37, Purple #5A189A, White #FFFFFF */
:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #E8C547;
  --gold-dark: #B8962E;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --purple-primary: #5A189A;
  --purple-dark: #3C0F6E;
  --purple-light: #7B2CBF;
  --purple-glow: rgba(90, 24, 154, 0.25);
  --white-primary: #FFFFFF;
  --gray-dark: #1A1A2E;
  --gray-medium: #5C5C7A;
  --gray-light: #F5F0FF;
  --shadow-light: 0 10px 30px var(--purple-glow);
  --shadow-heavy: 0 25px 50px -12px rgba(90, 24, 154, 0.35);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  letter-spacing: -0.025em;
  overflow-x: hidden;
  background: linear-gradient(to bottom, var(--white-primary) 0%, var(--gray-light) 100%);
  color: var(--gray-dark);
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
  transition: var(--transition-fast);
}

.brand-logo:hover {
  filter: drop-shadow(0 4px 16px var(--gold-glow));
  transform: scale(1.05);
}

.brand-logo-lg {
  max-height: 120px;
  width: auto;
  max-width: 212px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px var(--gold-glow));
}

.brand-logo-mockup {
  max-height: 96px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px var(--gold-glow));
}

.brand-text {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px var(--purple-glow);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.nav-link {
  position: relative;
  color: var(--gray-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold-primary));
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover { color: var(--purple-primary); }
.nav-link:hover::after { width: 100%; }

.btn-hero-gold,
.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  border: none;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-fast);
}

.btn-hero-gold:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px var(--gold-glow);
}

.btn-hero-outline {
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(90, 24, 154, 0.15);
  color: var(--white-primary);
  transition: var(--transition-fast);
}

.btn-hero-outline:hover {
  background: rgba(90, 24, 154, 0.35);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.btn-gold-nav {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 6px 20px var(--gold-glow);
  transition: var(--transition-fast);
}

.btn-gold-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--gold-glow);
}

.btn-outline-gold {
  border: 2px solid var(--gold-primary);
  color: var(--gold-dark);
  transition: var(--transition-fast);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--white-primary);
}

.btn-purple {
  background: var(--purple-primary);
  color: var(--white-primary);
  transition: var(--transition-fast);
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.btn-danger {
  background: #DC2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.card,
.card-hero-video,
.card-vision,
.sermon-card,
.leader-card,
.gallery-card {
  transition: var(--transition-smooth);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--white-primary);
  border: 1px solid rgba(90, 24, 154, 0.1);
  box-shadow: var(--shadow-light);
}

.card::before,
.leader-card::before,
.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold-primary));
  transform: scaleX(0);
  transition: var(--transition-fast);
  z-index: 1;
}

.card:hover::before,
.leader-card:hover::before,
.gallery-card:hover::before { transform: scaleX(1); }

.card:hover,
.leader-card:hover,
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.section-heading {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading-light {
  background: linear-gradient(135deg, var(--white-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero,
.prayer-hero {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 40%, var(--gold-primary) 100%);
  color: var(--white-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.prayer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.page-hero-content { position: relative; z-index: 1; }

.app-download-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 50%, var(--gold-dark) 100%);
  position: relative;
  overflow: hidden;
}

.app-download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white-primary);
  color: var(--purple-dark);
  padding: 0.875rem 1.75rem;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.app-store-btn.gold-variant {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--purple-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  border: 2px solid rgba(90, 24, 154, 0.2);
  color: var(--purple-primary);
  background: var(--white-primary);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  border-color: transparent;
}

/* Gallery masonry layout */
.gallery-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-masonry-home {
  column-count: 3;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

.gallery-masonry-item img,
.gallery-image-btn img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-image-btn {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
  position: relative;
}

.gallery-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

.gallery-video-thumb img,
.gallery-video-thumb video {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.gallery-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 46, 0.35);
  color: var(--white-primary);
  pointer-events: none;
}

.gallery-play-overlay i {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--gray-dark);
  font-size: 1.1rem;
  margin-left: 0.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gallery-admin-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

.gallery-admin-thumb img,
.gallery-admin-video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.gallery-media-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-media-badge-video {
  background: rgba(90, 24, 154, 0.92);
  color: var(--white-primary);
}

.gallery-media-badge-image {
  background: rgba(212, 175, 55, 0.95);
  color: var(--purple-dark);
}

.gallery-media-badge-external {
  background: rgba(26, 26, 46, 0.9);
  color: var(--gold-primary);
}

.gallery-platform-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(26, 26, 46, 0.88);
  color: var(--gold-primary);
  pointer-events: none;
}

.gallery-thumb-fallback {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-primary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gallery-preview-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  z-index: 1;
}

.gallery-external-thumb .gallery-thumb-img {
  position: relative;
  z-index: 0;
}

.gallery-mute-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 4;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  border: none;
  background: rgba(26, 26, 46, 0.75);
  color: var(--white-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-mute-btn:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.gallery-video-thumb:hover .gallery-play-overlay i,
.gallery-card:hover .gallery-play-overlay i {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

.gallery-lightbox-video-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.gallery-lightbox-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.gallery-speed-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-speed-label select,
.gallery-pip-btn {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-primary);
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
}

.gallery-pip-btn {
  cursor: pointer;
  font-weight: 700;
}

.gallery-pip-btn:focus-visible,
.gallery-speed-label select:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.gallery-home-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-lightbox-trigger {
  cursor: zoom-in;
}

.gallery-lightbox-trigger:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 5, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-lightbox.hidden {
  display: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox-content {
  max-width: min(1100px, 100%);
  width: 100%;
  text-align: center;
}

.gallery-lightbox-content img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-heavy);
}

.gallery-lightbox-content video {
  max-height: 75vh;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  background: #000;
  display: block;
  box-shadow: var(--shadow-heavy);
}

.gallery-lightbox-caption {
  color: var(--white-primary);
  margin-top: 1rem;
}

.gallery-lightbox-caption h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.gallery-lightbox-caption p {
  opacity: 0.9;
  margin-top: 0.35rem;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover:not(:disabled) {
  background: rgba(212, 175, 55, 0.35);
}

.gallery-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}

.gallery-lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Gallery pagination */
.gallery-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-page-btn,
.gallery-page-num {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(90, 24, 154, 0.15);
  color: var(--purple-primary);
  background: var(--white-primary);
  transition: var(--transition-fast);
}

.gallery-page-btn:hover,
.gallery-page-num:hover,
.gallery-page-num.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  border-color: transparent;
}

.gallery-page-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.gallery-page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.gallery-page-ellipsis {
  padding: 0 0.35rem;
  color: var(--gray-dark);
}

.leader-card .leader-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-primary));
}

.leader-card .leader-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* Bias toward upper-center so faces/heads stay visible */
  object-position: center 18%;
  image-rendering: auto;
}

.leader-card .leader-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  font-size: 4rem;
}

@media (max-width: 767px) {
  .leader-card .leader-photo-frame,
  .leader-card .leader-photo-placeholder {
    aspect-ratio: 5 / 6;
  }
}

@media (min-width: 1024px) {
  .leader-card .leader-photo-frame,
  .leader-card .leader-photo-placeholder {
    aspect-ratio: 4 / 5;
  }
}

.leader-video-wrap {
  width: 100%;
}

.leader-video,
.leader-admin-video {
  width: 100%;
  display: block;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  box-shadow: 0 8px 24px var(--purple-glow);
}

.leader-admin-video-preview.hidden {
  display: none !important;
}

.leader-bio {
  margin-top: 0.25rem;
}

.leader-bio-content {
  color: var(--gray-medium);
  font-size: 0.875rem;
  line-height: 1.7;
  white-space: pre-line;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  max-height: calc(1.7em * 5);
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-bio.is-expanded .leader-bio-content {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 2000px;
}

.leader-bio-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--purple-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.leader-bio-toggle:hover,
.leader-bio-toggle:focus-visible {
  color: var(--gold-dark);
  outline: none;
}

.leader-bio-toggle:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-glow);
  border-radius: 0.25rem;
}

.leader-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leader-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--purple-primary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.leader-contact-link:hover,
.leader-contact-link:focus-visible {
  color: var(--gold-dark);
  outline: none;
}

.leader-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.leader-social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  color: var(--white-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leader-social-icon:hover,
.leader-social-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--gold-glow);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .leader-bio-content {
    transition: none;
  }
}

.founder-badge {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-field,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(90, 24, 154, 0.2);
  border-radius: 12px;
  transition: var(--transition-fast);
  background: var(--white-primary);
}

.input-field:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--purple-primary);
}

.feature-card-purple {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  color: var(--white-primary);
}

.feature-card-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--white-primary);
}

.feature-card-white {
  background: var(--white-primary);
  border: 2px solid rgba(90, 24, 154, 0.15);
  color: var(--gray-dark);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 1s ease-out; }

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple-primary), var(--gold-primary));
  border-radius: 4px;
}

footer {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--gray-dark) 100%);
}

.text-purple-accent { color: var(--purple-primary); }
.text-brand-purple { color: var(--purple-primary); }
.text-brand-gold { color: var(--gold-primary); }

.alert-success {
  background: rgba(212, 175, 55, 0.15);
  color: var(--purple-dark);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.alert-danger {
  background: rgba(220, 38, 38, 0.1);
  color: #991B1B;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.alert-warning {
  background: rgba(212, 175, 55, 0.2);
  color: var(--purple-dark);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.alert-info {
  background: rgba(90, 24, 154, 0.1);
  color: var(--purple-primary);
  border: 1px solid rgba(90, 24, 154, 0.25);
}

.form-error {
  color: #991B1B;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.badge-unread {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-read {
  background: rgba(90, 24, 154, 0.1);
  color: var(--purple-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.badge-admin {
  color: var(--gold-dark);
  font-weight: 700;
}

.empty-state {
  color: var(--gray-medium);
}

.contact-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
}

.social-links-row {
  min-height: 2.75rem;
}

.social-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  pointer-events: none;
}

.social-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-primary);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.social-icon-btn--footer {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  border: 2px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.social-icon-btn--footer .social-icon-svg {
  width: 1.45rem;
  height: 1.45rem;
}

.social-icon-btn--footer:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--purple-dark);
  border-color: var(--gold-secondary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.social-icon-btn--contact {
  color: var(--white-primary);
}

.social-icon-btn--contact .social-icon-svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-icon-btn--compact {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(90, 24, 154, 0.08);
  color: var(--purple-primary);
  border: 1px solid rgba(90, 24, 154, 0.15);
}

.social-icon-btn--compact:hover {
  background: var(--purple-primary);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.social-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 7rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-card-link:hover {
  transform: translateY(-4px);
}

.social-card-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.social-card-icon .social-icon-svg {
  width: 2rem;
  height: 2rem;
}

.social-card-link:hover .social-card-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  box-shadow: var(--shadow-medium);
}

.social-card-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.social-card-link:hover .social-card-label {
  color: var(--gold-primary);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--gray-light) 0%, rgba(90, 24, 154, 0.05) 100%);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  color: var(--gold-primary);
}

.success-banner {
  background: rgba(212, 175, 55, 0.12);
  border: 2px solid rgba(212, 175, 55, 0.35);
  color: var(--purple-dark);
}

.success-banner .success-icon-lg {
  color: var(--gold-primary);
}

.enrolled-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(90, 24, 154, 0.1));
  color: var(--purple-dark);
  border: 2px solid rgba(212, 175, 55, 0.35);
}

.activity-card-purple {
  background: linear-gradient(135deg, rgba(90, 24, 154, 0.08), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(90, 24, 154, 0.2);
}

.activity-card-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(90, 24, 154, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.activity-icon-purple {
  background: var(--purple-primary);
}

.activity-icon-gold {
  background: var(--gold-primary);
  color: var(--purple-dark);
}

.activity-text-purple { color: var(--purple-primary); }
.activity-text-gold { color: var(--gold-dark); }

.hero-overlay-brand {
  background: linear-gradient(135deg, rgba(60, 15, 110, 0.85) 0%, rgba(90, 24, 154, 0.7) 50%, rgba(184, 150, 46, 0.5) 100%);
}

@media (max-width: 768px) {
  .brand-logo { height: 40px; max-width: 71px; }
  .brand-logo-lg { max-height: 96px; max-width: 170px; }
  .brand-logo-mockup { max-height: 80px; max-width: 141px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry,
  .gallery-masonry-home { column-count: 1; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-masonry,
  .gallery-masonry-home { column-count: 2; }
}

/* App download gateway */
.app-phone-mockup {
  width: 16rem;
  min-height: 20rem;
  border-radius: 3rem;
  border: 4px solid var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.app-screenshot-thumb {
  width: 5rem;
  height: 9rem;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-light);
}

.app-screenshot-strip {
  scrollbar-width: thin;
}

.app-feature-card .app-feature-icon {
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
}

.app-step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-screenshot-card img {
  transition: var(--transition-fast);
}

.app-screenshot-card:hover img {
  transform: scale(1.02);
}

.brand-logo,
.brand-logo-lg,
.brand-logo-mockup {
  background: transparent;
}

/* Events */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white-primary);
  border: 1px solid rgba(90, 24, 154, 0.08);
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.event-card-banner {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(90, 24, 154, 0.08), rgba(212, 175, 55, 0.12));
}

.event-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.event-card:hover .event-card-banner img {
  transform: scale(1.03);
}

.event-card-banner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
}

.event-featured-card {
  background: var(--white-primary);
  border: 1px solid rgba(90, 24, 154, 0.1);
  box-shadow: var(--shadow-medium);
}

.event-featured-banner {
  min-height: 18rem;
  background: linear-gradient(135deg, rgba(90, 24, 154, 0.1), rgba(212, 175, 55, 0.15));
}

.event-featured-banner img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.event-badge-featured {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-dark);
}

.badge-published {
  background: rgba(90, 24, 154, 0.12);
  color: var(--purple-primary);
}

.badge-draft {
  background: rgba(0, 0, 0, 0.06);
  color: var(--gray-dark);
}

.badge-featured {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-dark);
}

/* Sermon preview video â€” autoplay background, click opens social */
.sermon-preview {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sermon-preview:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-primary), 0 0 0 6px var(--purple-glow);
}

.sermon-preview-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  /* Reserve space to prevent layout shift while media loads */
  min-height: 0;
}

.sermon-preview-video,
.sermon-preview-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  transform: scale(1);
  filter: brightness(0.78);
}

.sermon-preview-video {
  z-index: 0;
  /* Hide native media UI across browsers */
  -webkit-media-controls: none !important;
}

.sermon-preview-video::-webkit-media-controls,
.sermon-preview-video::-webkit-media-controls-enclosure,
.sermon-preview-video::-webkit-media-controls-panel,
.sermon-preview-video::-webkit-media-controls-start-playback-button,
.sermon-preview-video::-webkit-media-controls-play-button,
.sermon-preview-video::-webkit-media-controls-timeline,
.sermon-preview-video::-webkit-media-controls-current-time-display,
.sermon-preview-video::-webkit-media-controls-time-remaining-display,
.sermon-preview-video::-webkit-media-controls-mute-button,
.sermon-preview-video::-webkit-media-controls-volume-slider,
.sermon-preview-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* Firefox / standard media controls */
.sermon-preview-video::-moz-media-controls {
  display: none !important;
}

.sermon-preview-poster[hidden] {
  display: none !important;
}

.sermon-preview-poster.is-visible {
  display: block !important;
  z-index: 1;
}

.sermon-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.15) 0%,
    rgba(90, 24, 154, 0.35) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}

.sermon-preview-play {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--gray-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.sermon-preview-play i {
  font-size: 1.35rem;
  margin-left: 0.15rem;
}

.sermon-preview:hover .sermon-preview-video,
.sermon-preview:hover .sermon-preview-poster,
.sermon-preview:focus-visible .sermon-preview-video,
.sermon-preview:focus-visible .sermon-preview-poster {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.sermon-preview:hover .sermon-preview-overlay,
.sermon-preview:focus-visible .sermon-preview-overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.35) 0%,
    rgba(60, 15, 110, 0.65) 100%
  );
}

.sermon-preview:hover .sermon-preview-play,
.sermon-preview:focus-visible .sermon-preview-play {
  transform: scale(1.12);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.sermon-preview.is-fallback .sermon-preview-video {
  visibility: hidden;
}

.sermon-preview.is-playing .sermon-preview-poster {
  opacity: 0;
  pointer-events: none;
}

.sermon-card .sermon-preview {
  border-radius: 0;
}

@media (max-width: 640px) {
  .sermon-preview-play {
    width: 3.5rem;
    height: 3.5rem;
  }

  .sermon-preview-play i {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sermon-preview-video,
  .sermon-preview-poster,
  .sermon-preview-play,
  .sermon-preview-overlay {
    transition: none;
  }

  .sermon-preview:hover .sermon-preview-video,
  .sermon-preview:hover .sermon-preview-poster,
  .sermon-preview:focus-visible .sermon-preview-video,
  .sermon-preview:focus-visible .sermon-preview-poster {
    transform: none;
  }

  .sermon-preview:hover .sermon-preview-play,
  .sermon-preview:focus-visible .sermon-preview-play {
    transform: none;
  }
}

button.sermon-preview {
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}

.sermon-platform-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(26, 26, 46, 0.88);
  color: var(--gold-primary);
  pointer-events: none;
}

.sermon-preview-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  z-index: 1;
}

.sermon-admin-thumb {
  width: 7.5rem;
  height: 4.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

.sermon-admin-thumb img,
.sermon-admin-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sermon-admin-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-primary);
  font-size: 0.7rem;
  font-weight: 800;
}

.sermon-card-highlight {
  outline: 3px solid var(--gold-primary);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.25);
}

body.sermon-player-open {
  overflow: hidden;
}

.sermon-player-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sermon-player-modal.hidden,
.sermon-player-modal[hidden] {
  display: none !important;
}

.sermon-player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 5, 30, 0.88);
}

.sermon-player-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #12081f;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: var(--white-primary);
}

.sermon-player-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.sermon-player-close:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.sermon-player-stage {
  position: relative;
  background: #000;
}

.sermon-player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.sermon-player-loading,
.sermon-player-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}

.sermon-player-error {
  color: #ffb4b4;
}

.sermon-player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(18, 8, 31, 0.95);
}

.sermon-player-controls button,
.sermon-player-controls select,
.sermon-player-controls input[type="range"] {
  touch-action: manipulation;
}

.sermon-player-controls button,
.sermon-player-controls select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-primary);
  border-radius: 0.5rem;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  font-weight: 700;
}

.sermon-player-controls button:focus-visible,
.sermon-player-controls select:focus-visible,
.sermon-player-controls input:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.sermon-seek-wrap {
  flex: 1 1 12rem;
  min-width: 8rem;
}

.sermon-seek-wrap input[type="range"] {
  width: 100%;
}

.sermon-time {
  display: flex;
  gap: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.2rem;
}

#sermon-volume {
  width: 5rem;
}

.sermon-player-caption {
  padding: 1rem 1.25rem 1.25rem;
}

.sermon-player-caption h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.sermon-player-caption p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

.filter-btn.is-active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary)) !important;
  color: var(--gray-dark) !important;
}

/* Form inputs â€” unified styling */
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(90, 24, 154, 0.15);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 4px var(--purple-glow);
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}

.status-verified, .status-active {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.status-pending, .status-paused {
  background: rgba(234, 179, 8, 0.15);
  color: #a16207;
}

.status-failed, .status-cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.status-manual {
  background: rgba(90, 24, 154, 0.12);
  color: var(--purple-primary);
}

/* Giving category cards */
.giving-category-card {
  border: 1px solid rgba(90, 24, 154, 0.08);
  transition: var(--transition-fast);
  text-align: center;
}

.giving-category-card:hover {
  border-color: var(--gold-primary);
}

.giving-category-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--purple-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(90, 24, 154, 0.12));
}

/* Organization chart */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.org-chart-level {
  width: 100%;
  text-align: center;
}

.org-chart-level-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  color: var(--white-primary);
  margin-bottom: 1.5rem;
}

.org-chart-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.org-chart-node {
  background: var(--white-primary);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
  min-width: 160px;
  max-width: 200px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.org-chart-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--gold-primary);
}

.org-chart-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  margin: 0 auto 0.75rem;
  display: block;
  border: 3px solid var(--gold-primary);
}

.org-chart-photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
  color: var(--white-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.org-chart-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 0.25rem;
}

.org-chart-role {
  font-size: 0.75rem;
  color: var(--purple-primary);
  font-weight: 600;
}

.org-chart-connector {
  color: var(--gold-primary);
  font-size: 1.25rem;
  padding: 0.75rem 0;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .org-chart-members {
    gap: 1rem;
  }
  .org-chart-node {
    min-width: 140px;
    max-width: 160px;
    padding: 1rem;
  }
}

/* Payment method radio cards */
.payment-method-option .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

