:root {
      --blue: #0077bc;
      --sky: #00a0e3;
      --navy: #0f2742;
      --dark: #111827;
      --text: #1f2937;
      --muted: #6b7280;
      --line: #e5e7eb;
      --bg: #f8fafc;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
      --radius: 20px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body#myB {
      margin: 0;
      color: var(--text);
      background: var(--white);
      font-family: "Noto Sans KR", sans-serif;
      line-height: 1.7;
      word-break: keep-all;
      overflow-wrap: break-word;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--sky);
    }

    a:focus-visible {
      outline: 3px solid rgba(0, 160, 227, 0.4);
      outline-offset: 4px;
      border-radius: 6px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header */
    #Pheader {
      width: 100%;
      max-width: none;
      height: auto;
      margin: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(229, 231, 235, 0.9);
      backdrop-filter: blur(12px);
    }

    #Pheader-inner {
      max-width: 1200px;
      height: auto;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .mainLogo {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .mainLogo img {
      width: min(300px, 70vw);
      height: auto;
    }

    #menus {
      height: auto;
      margin: 0;
      padding: 0;
      float: none;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 28px;
      list-style: none;
      white-space: nowrap;
    }

    #menus li {
      margin: 0;
      list-style: none;
      display: block;
    }

    .menuText {
      color: var(--text);
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }

    .menuText:hover,
    .menuText.active {
      color: var(--sky);
    }

    /* Common */
    main {
      overflow: hidden;
    }

    .main-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(72px, 8vw, 120px) 24px;
      font-family: "Noto Sans KR", sans-serif;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h2 {
      color: var(--blue);
      font-family: "Poppins", sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
      color: var(--sky);
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      margin-right: 10px;
      background: var(--sky);
      border-radius: 999px;
    }

    .section-heading {
      margin-bottom: 34px;
    }

    .section-desc {
      max-width: 760px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    /* Page hero */
    #people-title {
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(4, 24, 48, 0.84) 0%, rgba(4, 24, 48, 0.62) 52%, rgba(4, 24, 48, 0.28) 100%),
        url("../../../images/title_banner.jpg") center / cover no-repeat;
    }

    .page-hero {
      min-height: clamp(360px, 48vw, 520px);
      display: flex;
      align-items: center;
    }

    .page-hero h1 {
      color: var(--white);
      font-family: "Poppins", sans-serif;
      font-size: clamp(50px, 8vw, 86px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.06em;
    }

    .page-hero p {
      max-width: 720px;
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.88);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.75;
    }

    .page-hero-tags {
      margin-top: 28px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .page-hero-tag {
      padding: 7px 12px;
      color: rgba(255, 255, 255, 0.92);
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
    }

    /* People main */
    #people-main {
      background: var(--bg);
      text-align: left;
    }

    .people-summary {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 72px;
    }

    .summary-card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    }

    .summary-card strong {
      display: block;
      color: var(--blue);
      font-family: "Poppins", sans-serif;
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
    }

    .summary-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 600;
    }

    .people-section + .people-section {
      margin-top: 84px;
    }

    /* Professor */
    .faculty-card {
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .faculty-photo {
      min-height: 100%;
      padding: 28px;
      background: #eef2f7;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faculty-photo img {
      width: 100%;
      max-width: 280px;
      height: auto;
      min-height: 0;
      object-fit: contain;
      border-radius: 24px;
    }

    .faculty-info {
      padding: clamp(32px, 5vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .person-role {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 16px;
      padding: 6px 12px;
      color: var(--blue);
      background: rgba(0, 160, 227, 0.10);
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .faculty-info h3 {
      color: var(--dark);
      font-family: "Poppins", "Noto Sans KR", sans-serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.04em;
    }

    .faculty-title {
      margin-top: 10px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .person-meta {
      margin-top: 28px;
      display: grid;
      gap: 12px;
    }

    .meta-row {
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      font-size: 16px;
    }

    .meta-label {
      color: var(--muted);
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .meta-value {
      color: #374151;
      font-weight: 600;
    }

    .meta-value a {
      color: #374151;
    }

    .meta-value a:hover {
      color: var(--sky);
    }

    .research-tags {
      margin-top: 30px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .research-tag {
      padding: 7px 12px;
      color: var(--blue);
      background: #eef8ff;
      border: 1px solid rgba(0, 160, 227, 0.18);
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 700;
    }

    .contact-actions {
      margin-top: 34px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 46px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--white);
      background: var(--sky);
      box-shadow: 0 12px 30px rgba(0, 160, 227, 0.24);
    }

    .btn-primary:hover {
      color: var(--white);
      background: #008dd0;
    }

    .btn-secondary {
      color: var(--blue);
      border: 1px solid rgba(0, 160, 227, 0.32);
      background: var(--white);
    }

    .btn-secondary:hover {
      color: var(--blue);
      background: #eef8ff;
    }

    /* Members */
    .member-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .member-card {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .member-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 160, 227, 0.38);
      box-shadow: var(--shadow);
    }

    .member-photo {
      padding: 24px 24px 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(0, 160, 227, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    }

    .member-photo img {
      width: 140px;
      height: 140px;
      margin: 0 auto;
      object-fit: contain;
      object-position: center;
      padding: 6px;
      border-radius: 22px;
      border: 1px solid rgba(229, 231, 235, 0.9);
      background: #ffffff;
    }

    .member-info {
      padding: 24px;
      text-align: center;
    }

    .member-info h3 {
      color: var(--dark);
      font-family: "Poppins", "Noto Sans KR", sans-serif;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -0.03em;
    }

    .member-position {
      margin-top: 8px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
    }

    .member-dept {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .member-email {
      margin-top: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 14px;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      font-size: 13px;
      font-weight: 700;
      word-break: break-all;
    }

    .member-email:hover {
      color: var(--blue);
      border-color: rgba(0, 160, 227, 0.38);
      background: #eef8ff;
    }

        /* Alumni */
    .alumni-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .alumni-card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .alumni-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 160, 227, 0.38);
      box-shadow: var(--shadow);
    }

    .alumni-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      color: var(--blue);
      background: #eef8ff;
      border: 1px solid rgba(0, 160, 227, 0.18);
      border-radius: 999px;
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .alumni-card h3 {
      margin-top: 18px;
      color: var(--dark);
      font-family: "Poppins", "Noto Sans KR", sans-serif;
      font-size: 22px;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -0.035em;
    }

    .alumni-position {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.6;
    }

    /* Recruiting callout */
    .join-card {
      margin-top: 84px;
      padding: clamp(32px, 5vw, 52px);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) auto;
      gap: 28px;
      align-items: center;
      color: var(--white);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(5, 28, 52, 0.94), rgba(0, 119, 188, 0.82)),
        url("../../../images/bg_contact.png") center / cover no-repeat;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

    .join-card h2 {
      color: var(--white);
    }

    .join-card p {
      max-width: 720px;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 17px;
      line-height: 1.8;
    }

    .join-card .btn-secondary {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.52);
      background: rgba(255, 255, 255, 0.10);
    }

    .join-card .btn-secondary:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.18);
    }

    /* Footer */
    #main-footer {
      width: 100%;
      color: rgba(255, 255, 255, 0.78);
      background: #111827;
      text-align: center;
      font-size: 14px;
      letter-spacing: -0.02em;
    }

    #main-footer .main-inner {
      padding: 48px 24px;
    }

    .footer-logo {
      width: min(300px, 70vw);
      margin: 0 auto 18px;
    }

    /* Responsive */
    @media (max-width: 1040px) {
      .member-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faculty-card {
        grid-template-columns: 300px minmax(0, 1fr);
      }

      .faculty-photo img {
        min-height: 460px;
      }
    }

    @media (max-width: 860px) {
      #Pheader-inner {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        padding: 14px 20px;
      }

      #menus {
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }

      .page-hero {
        text-align: center;
        justify-content: center;
      }

      .page-hero-tags {
        justify-content: center;
      }

      .section-heading {
        text-align: center;
      }

      .section-kicker {
        justify-content: center;
      }

      .section-kicker::before {
        display: none;
      }

      .section-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .people-summary {
        grid-template-columns: 1fr;
      }

      .summary-card {
        text-align: center;
      }

      .faculty-card {
        grid-template-columns: 1fr;
      }

      .faculty-photo img {
        width: 220px;
        height: 220px;
        min-height: auto;
        margin: 36px auto 0;
        border-radius: 24px;
        object-fit: cover;
      }

      .faculty-info {
        text-align: center;
        align-items: center;
      }

      .person-meta {
        width: 100%;
        max-width: 520px;
        text-align: left;
      }

      .research-tags,
      .contact-actions {
        justify-content: center;
      }

      .join-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .join-card .contact-actions {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .main-inner {
        padding: 64px 20px;
      }

      .mainLogo img {
        width: 250px;
      }

      #menus {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        text-align: center;
      }

      .menuText {
        font-size: 13px;
      }

      .page-hero {
        min-height: 420px;
      }

      .page-hero h1 {
        font-size: clamp(44px, 14vw, 62px);
      }

      .page-hero p {
        font-size: 16px;
      }

      .member-grid {
        grid-template-columns: 1fr;
      }

      .alumni-grid {
        grid-template-columns: 1fr;
      }

      .meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
      }

      .person-meta {
        text-align: center;
      }

      .contact-actions {
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .member-email {
        width: 100%;
      }
    }
