.e-board {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .e-board-member {
    width: 220px;            /* adjust as needed */
    text-align: center;
  }
  
  .photo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    perspective: 1000px;     /* enables 3D space */
    cursor: pointer;
  }
  
  .photo-container .inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
  }
  
  .photo-container:hover .inner {
    transform: rotateY(180deg);
  }
  
  .photo-container .photo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
  }
  
  .photo-container .front {
    /* front face stays as-is */
  }
  
  .photo-container .back {
    transform: rotateY(180deg);
  }
  
  .name {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.1rem;
  }
  
  .position {
    margin: 0;
    font-weight: bold;
    color: #555;
  }
  
  .description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
  }
  