/* Общие стили */
.productExpert {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  border-top: 1px solid #efefef;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.productExpert-inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box;
}

/* Блок с экспертом */
.productExpert-person {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background: #fff;
  gap: 20px;
  min-width: 0;
}

.productExpert-person img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.productExpert-person img:hover {
  transform: scale(1.05);
}

.productExpert-description {
  flex: 1;
  min-width: 0;
}

.productExpert-person p {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 18px;
}

.productExpert-person p a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.productExpert-person p a:hover {
  color: #135ab6;
}
.btn-simple:hover {
	cursor: pointer;
text-decoration: none;
color: white;}

.productExpert-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.productExpert-bottom {
  margin-top: 15px;
}

.productExpert-phone {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

/* Блок с контактами */
.productExpert-contact {
  width: 300px;
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  box-sizing: border-box;
}

.productExpert-contact p {
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.productExpert-contact img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
}

.productExpert-question {
  margin: 15px 0;
}

/* Медиа-запросы */
@media (min-width: 800px) {
  .productExpert-inner {
    flex-wrap: nowrap; /* Горизонтальное расположение */
  }

  .productExpert-person {
    padding-right: 40px; /* Отступ справа вместо margin */
  }

  .productExpert-contact {
    border-left: 1px solid #e0e0e0; /* Разделительная линия */
  }
}

@media (max-width: 800px) {
  .productExpert-person {
    flex-direction: column; /* Вертикально на узких экранах */
    padding: 15px;
  }

  .productExpert-contact {
    width: 100%;
    border-top: 1px solid #e0e0e0;
  }

  .productExpert-person img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .productExpert {
    border-radius: 0;
    margin: 0 0 20px 0;
    border-left: none;
    border-right: none;
  }

  .productExpert-person {
    padding: 10px;
  }

  .productExpert-person img {
    width: 100px;
    height: 100px;
  }

  .productExpert-desc {
    font-size: 13px;
  }

  .productExpert-phone {
    font-size: 13px;
  }

  .productExpert-contact {
    padding: 15px;
  }
}