/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100svh;
  height: auto;
  background: url("../../img/members/psc_bg.png") center / cover no-repeat;
  background-attachment: fixed;
  font-family: 'Kanit', sans-serif;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: inherit;
  padding-top: env(safe-area-inset-top);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* ===== WHO WE ARE SECTION ===== */
.who-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;

  background: linear-gradient(
    135deg,
    #6ecbff 0%,
    #ff9ecf 100%
  );

  font-family: 'Kanit', sans-serif;
}

.who-content {
  max-width: 720px;
  margin: 50px auto 0;

  display: flex;
  flex-direction: column;
  align-items: center;   /* 👈 ทำให้ title อยู่กลาง */
  color: #1a1a1a;
}

.who-content span {
  display: block;
}

.who-logo {
  width: 120px;
  margin-bottom: 20px;
}

.text-justify {
  text-align: start;
}

.who-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
}

.who-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.who-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 28px;

  text-align: left;
  text-justify: inter-word;
}

.th {
  text-align: left;
  text-justify: inter-word;
}

.en-text {
  max-width: 720px;
  margin: 0 auto 32px;

  font-size: 18px;
  line-height: 1.2;

  text-align: left;
  word-spacing: normal;
}

/* ===== Tablet / Mobile ===== */
@media (max-width: 1024px) {
  .hero-section {
    height: 80vh;
  }

  .hero-container {
    padding-top: 14vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-logo {
    width: 120px;
  }

  .who-section {
    padding: 80px 20px;
  }

  .who-content {
    text-align: left;
  }

  .who-title {
    font-size: 34px;
  }

  .who-subtitle {
    font-size: 22px;
  }

  .who-content p {
    font-size: 16px;
  }
}