.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  width: 100%;
  gap: 1.2rem;
}
.title{
  font-weight: 400;
}

@media (min-width: 700px) {
  .card {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1200px;
    padding: 1.5rem 2.5rem;
    gap: 2.2rem;
  }
}

.leftCol {
  display: flex;
  flex-direction: column;
  align-items: left;
  min-width: 210px;
  max-width: 240px;
  flex-shrink: 0;
}

.imageWrapper {
  border-radius: 18px;
  border: 4px solid #4348a1;
  overflow: hidden;
  width: 175px;
  height: 175px;
  display: flex;
  align-items: left;
  justify-content: left;
  background: #f5f6fa;
  margin-bottom: 0.7em;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.name {
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-size: 1.50rem;
  font-weight: bold;
  color:#4348a1;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
}

.title {
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.5em;
  text-align: left;
  width: 100%;
}

.extraInfo {
  font-size: 0.8rem;
  color: #222;
  margin-bottom: 0.5em;
  text-align: left;
  width: 100%;
}

.rightCol {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.description {
  font-size: 1.4rem;
  color: #4a4a4a;
  margin-bottom: 0.5em;
  text-align: left;
  line-height: 1.2;
} 