.moderator-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    background: #fafafa;
}

.moderator-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.moderator-info {
    flex-grow: 1;
}

.moderator-certify {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.moderator-certify .moderator-icon {
    width: 24px;
    height: 24px;
    fill: #4CAF50;
    margin-right: 8px;
}

.moderator-name {
    margin: 5px 0;
}

.moderator-score {
    margin: 5px 0;
    color: #555;
}

.moderator-bio {
    margin-top: 10px;
    color: #666;
}

.teacher {
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border: solid 1px var(--e-global-color-primary);
}
.teacher-img, .teacher-img img {
    border-radius: 8px;
}
.teacher-img img {
    box-shadow: 2px 2px 6px #ccc !important;
    
}    
.teacher-img {
    width: 123px;
}
.teacher-content {
    padding-left: 10px;
    width: calc(100% - 123px);
}
.teacher-content .thamdinh {
    background-color: #42a947;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 10px !important;
    line-height: 18px !important;
    margin-top: 5px;
    padding: 2px 10px 2px 25px;
    position: relative;
}
.teacher-content .thamdinh::before {
    background: url(img/kiemduyet.png);
    background-size: 14px 14px;
    content: '';
    height: 14px;
    left: 6px;
    position: absolute;
    top: 3px;
    width: 14px;
}
.teacher-content h3, .teacher-content h3 a {
    color: var(--e-global-color-primary);
    font-size: 16px !important;
    font-weight: bold;
    line-height: 22px !important;
    margin: 5px 0 0 0;
}
.teacher-content .txt02 {
    font-size: 14px !important;
    margin-top: 6px;
}
.nd-gioithieu {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.teacher-content h3 span {
    color: #000;
}

@media screen and (max-width:768px){
.teacher-img {
    width: 88px;
}
.teacher-content {
    padding-left: 10px;
    width: calc(100% - 88px);
}    
.nd-gioithieu {
    -webkit-line-clamp: 5;
}    
    
}