/* ========================================
   俊骅页面横幅组件样式
======================================== */

.junhua-page-banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.junhua-page-banner-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景图片层 */
.junhua-page-banner-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.junhua-page-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 内容区域 */
.junhua-page-banner-content {
  position: absolute;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  padding: var(--spacing-2xl) 0;
}

/* 标题样式 */
.junhua-page-banner-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h1);
  line-height: 1.15;
  color: var(--text-color-white);
  margin: 0;
  text-align: left;
  max-width: 50%;
}

/* 描述文字样式 */
.junhua-page-banner-description {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-small);
  line-height: 1.15;
  color: var(--text-color-white);
  margin: 0;
  text-align: left;
  white-space: pre-line;
  max-width: 50%;
}

/* ========================================
   响应式设计
======================================== */
@media screen and (max-width: 576px) {
  .junhua-page-banner-title,
  .junhua-page-banner-description {
    max-width: 100%;
  }
  .junhua-page-banner-content {
    position: relative;
  }
  .junhua-page-banner-background {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
