@charset "UTF-8";
.expert-card {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 900px;
  justify-self: center;
  padding: 18px 24px;
  margin: 25px 0;
  background: #7a695f3d;
  border-radius: 28px;
  border: 2px solid #7a695f;
  box-sizing: border-box;
}
.expert-card__photo {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f8f8;
}
.expert-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-card__content {
  flex: 1;
  min-width: 0;
}
.expert-card__intro {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
.expert-card__name {
  margin: 0 0 4px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: #7a695f;
}
.expert-card__experience {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
/* Адаптация для мобильных */
@media (max-width: 600px) {
  .expert-card {
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }
  .expert-card__photo {
    flex-basis: 95px;
    width: 95px;
    height: 95px;
  }
  .expert-card__intro {
    font-size: 14px;
  }
  .expert-card__name {
    font-size: 18px;
  }
  .expert-card__experience {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .expert-card {
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }
  .expert-card__photo {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
  }
  .expert-card__intro {
    font-size: 13px;
  }
  .expert-card__name {
    font-size: 17px;
  }
  .expert-card__experience {
    font-size: 13px;
  }
}
