
.card {
  display: flex;
  flex-wrap: wrap;
  padding: 2em 1em;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 3.5em 1em;
  transition: 0.3s;
  background-color: #ffffff;
   border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
   border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border: none;
  height: 580px;
}
.card .img-container {
  width: 8em;
  height: 8em;
  background-color: #0073cc;
  padding: 0.5em;
  border-radius: 50%;
  margin: 0 auto 2em auto;
}
.card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; /* menjaga rasio 1:1 */
  object-fit: cover;   /* crop otomatis biar gambar selalu penuh tanpa distorsi */
  border-radius: 50%;  /* tetap bulat */
}
.card h3 {
  font-weight: 500;
}
.card p {
  font-weight: 500;
  font-size: 11pt;
}
.icons {
  width: 50%;
  min-width: 180px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.card a {
  text-decoration: none;
  color: inherit;
  font-size: 1.4em;
}