/* Section Block Styles - BEM Convention */

.section {
  position: relative;
}

.section--full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.section--with-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.section--with-bg .section__container {
  position: relative;
  z-index: 1;
}

.section__header {
  margin-bottom: 2rem;
}

.section__header--centered {
  text-align: center;
}

.section__title {
  margin: 0 0 0.5rem 0;
}

.section__subtitle {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.section__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section__body--centered {
  align-items: center;
  text-align: center;
}
