.reviewed-by-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0 0 28px;
  padding: 18px 22px;
  background-color: #0088C5;
  border-left: 4px solid #0079AF;
  border-radius: 12px;
}
.reviewed-by-card__photo {
  flex: 0 0 auto;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
}
.reviewed-by-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewed-by-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.reviewed-by-card__label {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.reviewed-by-card__name {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.reviewed-by-card__name:hover, .reviewed-by-card__name:focus {
  color: #ffffff;
  text-decoration: underline;
}
.reviewed-by-card__role {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.reviewed-by-card__date {
  margin-top: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}
@media (max-width: 767px) {
  .reviewed-by-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
  }
}
