.architect-staff-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.architect-staff-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}
.architect-staff-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.architect-staff-photo {
  flex: 0 0 40%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.architect-staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.architect-no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 14px;
}
.architect-staff-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.architect-staff-name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.architect-staff-position {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
.architect-staff-description {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 5px 0;
}
.architect-staff-contacts {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.architect-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  font-size: 13px;
}
.architect-contact-icon {
  font-size: 14px;
}
@media (max-width: 768px) {
  .architect-staff-item {
    flex-direction: column;
    text-align: center;
  }
  .architect-staff-photo {
    flex: 0 0 150px;
    height: 150px;
    margin: 0 auto;
    width: 150px;
  }
  .architect-staff-contacts {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .architect-staff-item {
    padding: 15px;
  }
  .architect-staff-name {
    font-size: 18px;
  }
  .architect-staff-contacts {
    flex-direction: column;
    align-items: center;
  }
  .architect-contact-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}