/* Leader Foreword V2 Block Styles - 主题蓝整栏 + 右侧灰叠加版 */

.leader-foreword-v2-loop {
  margin: 0;
  padding: 0;
}

/* Full-width 主题蓝背景 */
.leader-foreword-v2 {
  background: #00049E;
  color: #fff;
  overflow: visible;
  position: relative;
  padding: 0 30px;
  margin-top: 100px;
}

/* Inner container: left-right flex row */
.leader-foreword-v2__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}

/* Left column: photo + name + position, right-aligned */
.leader-foreword-v2__left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-right: 30px;
  justify-content: center;
}

/* Photo: elliptical, half above background */
.leader-foreword-v2__photo-wrap {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  margin-bottom: 15px;
}

.leader-foreword-v2__photo-wrap img {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.leader-foreword-v2__name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  color: #fff;
}

.leader-foreword-v2__name-en {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
}

.leader-foreword-v2__position {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

/* Right column: 引言区，灰色叠加延伸至视口右边 */
.leader-foreword-v2__right {
  flex: 1 1 65%;
  padding: 30px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.leader-foreword-v2__right::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100vw;
  background-color: rgba(51, 51, 51, 0.15);
  z-index: 0;
}

.leader-foreword-v2__right > * {
  position: relative;
  z-index: 1;
}

/* Quote marks */
.leader-foreword-v2__quote-open,
.leader-foreword-v2__quote-close {
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
  display: block;
}

.leader-foreword-v2__quote-open {
  margin-bottom: 8px;
}

.leader-foreword-v2__quote-close {
  text-align: right;
  margin-top: 8px;
}

/* Quote text */
.leader-foreword-v2__quote-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 700;
}

.leader-foreword-v2__quote-text p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .leader-foreword-v2 {
    margin-top: 80px;
    padding: 30px 20px;
  }

  .leader-foreword-v2__inner {
    flex-direction: column;
    align-items: center;
  }

  .leader-foreword-v2__left {
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .leader-foreword-v2__photo-wrap {
    margin-top: -80px;
  }

  .leader-foreword-v2__photo-wrap img {
    width: 120px;
    height: 150px;
  }

  .leader-foreword-v2__name,
  .leader-foreword-v2__name-en {
    font-size: 1.5rem;
  }

  .leader-foreword-v2__position {
    font-size: 1rem;
  }

  .leader-foreword-v2__right {
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .leader-foreword-v2__quote-open,
  .leader-foreword-v2__quote-close {
    font-size: 2.5rem;
  }

  .leader-foreword-v2__quote-text {
    font-size: 0.95rem;
  }
}
