/* ===========================
   DAFTAR DOSEN
=========================== */

.map-dosen-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.map-dosen-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

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

.map-dosen-foto {
  padding: 20px;
}

.map-dosen-foto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.map-dosen-card h3 {
  margin: 15px;
  color: #7a0d0d;
  font-size: 22px;
  min-height: 60px;
}

.map-dosen-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.map-btn {
  display: inline-block;
  margin-bottom: 25px;
  padding: 10px 20px;
  background: #7a0d0d;
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.map-btn:hover {
  background: #5b0909;
}
