/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
} */

body {
  background-color: #e9e9e9;
  /* padding: 40px 20px; */
}

.title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #111111;
  margin-top: 50px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 40px;
}

/* ===== CARD UMUM ===== */
.profile-card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
}

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

.profile-image img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
}

.profile-content h3 {
  color: #111111;
  font-size: 18px;
  margin-bottom: 8px;
}

.profile-content p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #444;
}

.profile-content button {
  margin-top: 8px;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background-color: #5a5a5a;
  color: white;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.profile-content button:hover {
  background-color: #f2c808;
}

/* ===== KOORDINATOR PRODI ===== */
.koordinator {
  border: 3px solid #f2c808;
  background: #fff5f5;
}

.badge {
  position: absolute;
  top: 10px;
  left: 150px;
  background: #f2c808;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 500px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-image img {
    width: 130px;
    height: 160px;
  }
}
