.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  max-width: 300px;
  min-width: 250px;
  flex: 1 1 170px;
  margin: 0 auto;
  margin-bottom: 1.2rem;
  box-sizing: border-box;
}

.imageWrapper {
  border-radius: 16px;
  color:#4348a1;
  border: 4px solid ;
  overflow: hidden;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fa;
  margin-bottom: 0.7em;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.name {
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4348a1;
  margin-bottom: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.title {
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.subtitle {
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-size: 0.85rem;
  color: #222;
  text-align: center;
  margin-bottom: 0.1em;
}

@media (max-width: 1200px) {
  .card {
    max-width: 23vw;
  }
}

@media (max-width: 900px) {
  .card {
    max-width: 45vw;
  }
}

@media (max-width: 600px) {
  .card {
    max-width: 90vw;
  }
  .imageWrapper {
    width: 130px;
    height: 130px;
  }
} 