.expert_groups_wrap {
  background: #fff;
}

.expert_groups_wrap h1 {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  padding: 20px 0;
  margin-bottom: 20px;
}

.expert_groups_wrap h1 span {
  margin-left: 20px;

  color: var(--gray-font-color);
  font-size: 20px;
  font-weight: 400;
}

.expert_groups_wrap main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.expert_groups_wrap main .section {
  width: 49%;
  margin-bottom: 30px;

  overflow: hidden;
  border: 1px solid #dcdfe6;
  border-radius: 15px;
  box-shadow: 3px 4px 12px 0px #dcdcdc57;
}

.expert_groups_wrap main .section h2 {
  padding: 15px 20px;

  border-bottom: 1px solid #dcdfe6;

  display: flex;
  align-items: center;
}

.expert_groups_wrap main .section h2 .profile-image {
  width: 60px;
  padding-right: 12px;
}

.expert_groups_wrap main .section h2 .profile-image img {
  width: 100%;
  max-height: 60px;

  border-radius: 50%;
}

.expert_groups_wrap main .section h2 .title {
  flex: 1;

  color: #181c34;
  font-size: 20px;
  font-weight: 700;

  display: flex;
  flex-direction: column;
}

.expert_groups_wrap main .section h2 .title .caption {
  color: #181c34;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.expert_groups_wrap main .section h2 .counts {
  color: var(--gray-font-color);
  font-size: 14px;
  font-weight: 400;

  display: flex;
  align-items: center;
  justify-self: flex-end;
}

.expert_groups_wrap main .section h2:hover .i_next_black_thick_24 {
  animation: anymore 0.5s infinite;
}

.expert_groups_wrap main .section > ul {
  margin: 0;
  padding: 0;
  list-style: none;

  border-bottom: 1px solid #f3f5f8;
}

.expert_groups_wrap main .section > ul > li {
  border-bottom: 1px solid #f3f5f8;
}

.expert_groups_wrap main .section > ul > li:last-of-type {
  border-bottom: 0;
}

.expert_groups_wrap main .section > ul > li.reply {
  background-color: var(--gray-bg-color);
}

.expert_groups_wrap main .section > ul > li.reply .fa-reply {
  padding-top: 5px;
  margin-right: 16px;
  transform: rotate(180deg);
}

.expert_groups_wrap main .section > ul > li .left {
  width: 100%;
}

.expert_groups_wrap main .section > ul > li a:hover h4 {
  color: #ff6600;
}

.expert_groups_wrap main .section > ul > li:last-child {
  border: none;
}

.expert_groups_wrap main .section > ul > li a .date span {
  margin-right: 10px;
}

.expert_groups_wrap main .section > ul > li a .date {
  color: var(--gray-font-color);
  font-size: 14px;
  margin-bottom: 20px;
}

.expert_groups_wrap main .section > ul > li a .thumb {
  margin: 10px 20px 10px 0;

  width: 120px;
  min-width: 120px;
  max-width: 120px;

  height: 80px;
  min-height: 80px;
  max-height: 80px;

  border-radius: 4px;
  border: 1px solid #eee;
  background: url("") no-repeat 50% 50%;
  background-size: cover;
}

.expert_groups_wrap main .section > ul > li a h4 {
  font-weight: 700;
  font-size: 16px;
  color: #181c34;
  margin: 12px 0;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.expert_groups_wrap main .section > ul > li a p {
  font-size: 14px;
  color: #181c34;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.expert_groups_wrap main .section > ul > li a {
  display: flex;
  align-items: center;
  height: 100%;
}

.expert_groups_wrap .btn_more {
  border-top: 1px solid #dcdfe6;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  font-size: var(--font-size-md);
  text-align: center;
}

.expert_groups_wrap .btn_more a:hover {
  color: var(--main-hover-color);
  font-weight: 700;
}

.expert_groups_wrap main .section.brand {
  width: 100%;
}

.expert_groups_wrap main .section.brand h2 .title {
  color: var(--main-color);
  font-size: 24px;
  font-weight: 700;
}

@keyframes anymore {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* -----------------------------------------------------------
  ------ mobile ------
--------------------------------------------------------------  */
.mobile .expert_groups_wrap h1 {
  padding: 20px 5% 0;
}

.mobile .expert_groups_wrap main {
  width: 100%;
  padding: 0 var(--inner-margin);
}
.mobile .expert_groups_wrap main .section {
  width: 100%;
}
