.crew-container {
  display: flex;
  margin-left: 0px;
  gap: 16px;
}

/* Hlavní obal karty */
.crew-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Jemný stín jako na obrázku */
  padding: 40px 30px;
  max-width: 320px;
  text-align: center;
  font-family: Arial, sans-serif; /* Přizpůsobte fontu vašeho e-shopu */
  margin: 0 auto;
}

/* Avatar (Obrázek) */
.crew-card .crew-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px auto;
  background-color: #f5f5f5; /* Světle šedé pozadí pod postavičkou */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-card .crew-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Jméno */
.crew-card .crew-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

/* Pozice */
.crew-card .crew-role {
  font-size: 16px;
  font-weight: 600;
  color: #f7a600; /* Žlutá/Oranžová barva podle obrázku */
  margin: 0 0 20px 0;
}

/* Žlutá oddělovací čára */
.crew-card .crew-divider {
  width: 40px;
  height: 2px;
  background-color: #f7a600;
  margin: 0 auto 20px auto;
}

/* Seznam povinností */
.crew-card .crew-tasks {
  text-align: left;
  list-style: none;
  padding: 0 0 0 15px; /* Odsazení pro odrážky */
  margin: 0 0 30px 0;
}

.crew-card .crew-tasks li {
  position: relative;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Vlastní žlutá odrážka v seznamu */
.crew-card .crew-tasks li::before {
  content: "•";
  position: absolute;
  left: -15px;
  top: -2px;
  color: #f7a600;
  font-size: 18px;
  font-weight: bold;
}

/* Spodní ikony s kontakty */
.crew-card .crew-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.crew-card .crew-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #1a1a1a;
  font-size: 24px; /* Velikost ikon */
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.crew-card .crew-contacts a:hover {
  opacity: 0.7;
  color: #f7a600;
}