/* =========================================================
   02-header.css
   목표:
   - 1줄: 제목 전체폭, 가운데 정렬
   - 2줄: 왼쪽 로고 / 오른쪽 부제+설명
========================================================= */
.dw-header-wrap{
  margin-bottom: 22px;
}

/* 1줄 제목 */
.dw-header-title-center{
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #111;
  text-align: center;
}

/* 2줄: 로고 좌 / 텍스트 우 */
.dw-header-row{
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.dw-header-logo{
  flex: 0 0 auto;
}

.dw-header-logo img,
.dw-header-logo svg{
  width: 140px;
  height: auto;
  display: block;
}

.dw-header-text{
  flex: 1 1 auto;
  min-width: 0;
}

.dw-header-subtitle{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #111;
}

.dw-header-desc{
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #111;
}

.dw-section-title {
  font-size: 16px;
  font-weight: 600; /* 필요 없으면 제거 */
}

/* =========================================
   FIX: Bricks 기본 Page Title(H1) 숨기기
   - #brx-content 바로 아래에 있는 h1 1개만 숨김
   - 우리 플러그인 헤더(.dw-header-wrap)의 h1은 유지
========================================= */
body.dw-standalone article#brx-content > h1:first-of-type{
  display: none !important;
}
