.faculty-page{
      color: white;
}

.faculty-menu{
      position: sticky;
      top: 80px;
}

.faculty-header{
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.18);
}

.faculty-eyebrow{
      color: #81d8fb;
      font-size: 14px;
      letter-spacing: 0;
      margin-bottom: 6px;
}

.faculty-header h1{
      margin: 0;
      color: white;
      font-size: 34px;
      line-height: 1.25em;
      font-weight: 600;
}

.faculty-count{
      min-width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(129,216,251,0.55);
      color: #81d8fb;
      font-size: 22px;
      font-weight: 600;
}

.faculty-list{
      display: flex;
      flex-direction: column;
      gap: 18px;
}

.faculty-card{
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 22px;
      padding: 20px;
      background-color: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
}

.faculty-photo{
      width: 150px;
      aspect-ratio: 3 / 4;
      background-color: rgba(255,255,255,0.08);
      overflow: hidden;
      border-radius: 6px;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
}

.faculty-photo img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.faculty-photo-empty{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #81d8fb;
      font-size: 48px;
      font-weight: 600;
}

.faculty-body{
      min-width: 0;
}

.faculty-name-row{
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
}

.faculty-name-row h2{
      margin: 0 0 4px;
      color: #81d8fb;
      font-size: 26px;
      line-height: 1.3em;
      font-weight: 600;
}

.faculty-position{
      color: rgba(255,255,255,0.82);
      line-height: 1.5em;
}

.faculty-position span{
      display: inline-block;
      margin-left: 8px;
      color: white;
}

.faculty-group{
      flex-shrink: 0;
      color: white;
      border: 1px solid rgba(1,130,179,0.75);
      background-color: rgba(1,130,179,0.25);
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 13px;
      line-height: 1.5em;
}

.faculty-honor{
      color: #f5d483;
      margin-bottom: 12px;
      line-height: 1.55em;
}

.faculty-section{
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 12px;
      padding: 10px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
}

.faculty-label{
      color: rgba(255,255,255,0.58);
      font-size: 14px;
}

.faculty-rich{
      color: rgba(255,255,255,0.9);
}

.faculty-rich p{
      margin-bottom: 0.35em;
}

.faculty-meta{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 18px;
      margin-top: 12px;
      color: rgba(255,255,255,0.82);
}

.faculty-meta div{
      min-width: 0;
      overflow-wrap: anywhere;
}

.faculty-meta i,
.faculty-lab-item i{
      color: #81d8fb;
      margin-right: 6px;
}

.faculty-labs{
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
}

.faculty-lab-item{
      color: rgba(255,255,255,0.82);
      overflow-wrap: anywhere;
}

.faculty-lab-item span{
      margin-right: 8px;
}

@media( max-width:992px ){
      .faculty-card{
            grid-template-columns: 132px 1fr;
      }

      .faculty-photo{
            width: 132px;
      }
}

@media( max-width:768px ){
      .faculty-header{
            display: none;
      }

      .faculty-card{
            grid-template-columns: 96px 1fr;
            gap: 16px;
            padding: 16px;
      }

      .faculty-photo{
            width: 96px;
      }

      .faculty-name-row{
            flex-direction: column;
      }

      .faculty-name-row h2{
            font-size: 22px;
      }

      .faculty-section,
      .faculty-meta{
            grid-template-columns: 1fr;
      }
}

@media( max-width:576px ){
      .faculty-card{
            grid-template-columns: 1fr;
      }

      .faculty-photo{
            width: 112px;
      }
}
