/* ============================================
   PANELS — Shared full-width panel behavior
============================================ */

.panel {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.panel h2,
.panel p {
  position: relative;
  z-index: 2;
}
