.page-block {
  position: relative;
  padding: 48px 0; /* Больше воздуха между блоками */
}

.page-block__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Чуть менее прозрачный фон для читаемости */
}

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

.page-block__title {
  margin-bottom: 1.5rem;
  color: var(--primary-color, #0056b3);
  font-weight: 700;
  line-height: 1.2;
}

.page-block__subtitle {
  margin-bottom: 2rem;
  color: #6c757d;
  font-size: 1.25rem;
  font-weight: 300;
}

.page-block__text {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Адаптивные изображения */
.page-block__image {
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); /* Мягкая тень для объема */
  max-width: 100%;
  height: auto;
}

.page-block__video {
    display: block;
    position: relative;
    transition: transform 0.2s ease;
}
.page-block__video:hover {
    transform: scale(1.02);
}
.page-block__video img {
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  max-width: 100%;
  height: auto;
}

/* Hero блок (если есть такой тип) */
.page-block--hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
