/**
 * Block: Page Header
 * 
 * Styles for page header section
 * 
 * @package     UDX
 * @subpackage  Blocks
 * @author      UDX Team
 * @version     1.0.0
 * @since       1.0.0
 */
.page-header {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}
@media (min-width: 768px) {
  .page-header {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .page-header {
    height: 568px;
  }
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.page-header .wp-block-group {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 0;
}
.page-header .wp-block-columns {
  height: 100%;
  width: 100%;
}
.page-header .wp-block-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  width: 100%;
}
.page-header__title {
  margin-bottom: 0.5rem;
}
.page-header__subtitle {
  margin: 0;
}
