.expert-opinion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  box-sizing: border-box;
}

.expert-opinion__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: 180px;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.expert-opinion__person:hover .expert-opinion__name {
  text-decoration: underline;
}

.expert-opinion__photo {
  display: block;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  background: #eef3f7;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}

.expert-opinion__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-opinion__name {
  display: block;
  margin-top: 12px;
  color: #143252;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.expert-opinion__role {
  display: block;
  margin-top: 4px;
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.25;
}

.expert-opinion .expert-opinion__quote,
.article-page-content .expert-opinion .expert-opinion__quote,
.case-page-content .expert-opinion .expert-opinion__quote {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 0;
  border-left: 4px solid #2e7d32;
  border-radius: 0 12px 12px 0;
  background: #fafafa;
  color: #34495e;
  box-sizing: border-box;
  font-style: normal;
}

.expert-opinion .expert-opinion__quote p,
.article-page-content .expert-opinion .expert-opinion__quote p,
.case-page-content .expert-opinion .expert-opinion__quote p {
  margin: 0;
  color: #34495e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.expert-opinion .expert-opinion__quote a {
  font-weight: 700;
}

@media (min-width: 768px) {
  .expert-opinion {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
  }

  .expert-opinion__person {
    width: 180px;
  }
}
