/* Start custom CSS *//* GRID CONTACT PERSON */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch; /* bikin tinggi kartu sejajar */
}

/* CARD CONTACT */
.contact-card {
  border: 1px solid #eef3f8;
  border-radius: 12px;
  padding: 16px 18px;
  background: #f8fbff;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* konten rata */
}

/* JUDUL ROLE */
.contact-card .role {
  font-weight: 700;
  margin-bottom: 6px;
  color: #083d62;
}

/* NAMA */
.contact-card .name {
  font-weight: 700;
  margin-bottom: 6px;
}

/* INFO */
.contact-card .info {
  font-size: 14px;
  margin-bottom: 4px;
}

/* EMAIL */
.contact-card a {
  color: #0b5f8a;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}/* End custom CSS */