/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #edecec;
}

/* Section */
.faculty-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

/* Title */
.faculty-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Department title */
.department-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 20px;
}

/* Grid */
.faculty-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

/* Card */
.faculty-card {
  width: 220px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Image frame effect */
.faculty-img {
  padding: 6px;
  background: #caa45f; /* gold frame */
  border-radius: 4px;
}

.faculty-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 4px solid #fff;
}

/* Info */
.faculty-info h3 {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 1px;
}

.faculty-info p {
  font-size: 14px;
  font-weight: 550;
  color: #555;
}