/* ============================================================
   SITE ALERT BANNER
   ============================================================ */

.site-alert {
  padding: 0.65rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.site-alert .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-alert__message { flex: 1; }
.site-alert__link {
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
}
.site-alert--info    { background: #dbeafe; color: #1e3a5f; }
.site-alert--info .site-alert__link { color: #1e3a5f; }
.site-alert--warning { background: #fef3c7; color: #78350f; }
.site-alert--warning .site-alert__link { color: #78350f; }
.site-alert--urgent  { background: #fee2e2; color: #7f1d1d; }
.site-alert--urgent .site-alert__link { color: #7f1d1d; }

/* Alert badge styles for admin table */
.alert-style-info    { background: #dbeafe; color: #1e40af; }
.alert-style-warning { background: #fef3c7; color: #92400e; }
.alert-style-urgent  { background: #fee2e2; color: #991b1b; }

/* Pastor photo */
.pastor-photo {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pastor-photo {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 540px) {
  .pastor-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
  }
}
