.v-wrapper-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.v-wrapper-info-item {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #DEDEDE;
}

.v-info__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.v-info__intro {
  margin-left: 16px;
}
.v-info__intro-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.v-info__intro-subtitle {
  font-size: 16px;
  margin-top: 24px;
  font-weight: 400;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-content {
  background-image: url('/static/img/custom/teacher-bg.png');
}

@media screen and (min-width: 769px) {
  .v-wrapper-info-item {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  .v-wrapper-info-item {
    width: 100%;
  }
}
