.board-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Mukta Vaani', sans-serif;
}

.board-section {
    margin-bottom: 50px;
}

.board-section h2 {
    color: #303360;
    font-size: 28px;
    border-bottom: 3px solid #303360;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.member-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #303360;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-role {
    color: #303360;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.member-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.member-dept {
    font-size: 15px;
    color: #666;
    display: block;
    font-style: italic;
}

.member-inst {
    font-size: 15px;
    color: #555;
    display: block;
    margin-bottom: 10px;
}

.member-email {
    font-size: 14px;
    color: #303360;
    text-decoration: none;
}

.member-email:hover {
    text-decoration: underline;
}

.editors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.editor-card {
    background: #f8f9fa;
    padding: 15px;
    border-left: 3px solid #303360;
    border-radius: 4px;
}

.editor-card .member-name {
    font-size: 17px;
}

@media (max-width: 768px) {
    .board-container {
        padding: 15px;
        margin-top: 20px;
    }

    .board-section h2 {
        font-size: 22px;
    }
}

.closing-note {
    text-align: right;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid #ddd;
    font-style: italic;
}
   /* Scoped styles for Leadership & Management profiles */
    .management-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 60px;
      justify-content: center;
      padding: 50px 20px;
    }
    .member-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 280px;
    }
    .management-grid .member-photo {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 30px;
      transition: all 0.4s ease;
      cursor: pointer;
      filter: grayscale(100%);
    }
    .management-grid .member-photo:hover {
      filter: grayscale(0%);
      transform: translateY(-8px) scale(1.03);
    }
    .management-grid .member-info {
      text-align: center;
      width: 100%;
    }
    .management-grid .member-info .member-role {
      display: block;
      font-weight: 700;
      color: #303360;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .management-grid .member-info .member-name {
      display: block;
      font-weight: 700;
      font-size: 1.2rem;
      color: #1a1a1a;
      margin-bottom: 10px;
    }
    .management-grid .member-info .member-email {
      display: block;
      color: #667eea;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .management-grid .member-info .member-email:hover {
      color: #764ba2;
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .management-grid {
        gap: 45px;
        padding: 40px 20px;
      }
      .member-profile {
        width: 240px;
      }
      .management-grid .member-photo {
        width: 240px;
        height: 240px;
        margin-bottom: 25px;
      }
    }
    @media (max-width: 480px) {
      .management-grid {
        gap: 35px;
        padding: 30px 15px;
      }
      .member-profile {
        width: 200px;
      }
      .management-grid .member-photo {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
      }
      .management-grid .member-info .member-name {
        font-size: 1.05rem;
      }
    }