/* el-reviews styles extracted from SWAV elearning-detail.css for satellite portals */


.el-reviews {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
    background: #f8fafb;
    border-radius: 14px;
}


.el-reviews__google-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


.el-reviews__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}


.el-reviews__header .el-social-proof__stars {
    font-size: 18px;
}


.el-reviews__rating {
    font-size: 14px;
    color: var(--tpl-color-sub-b);
}


.el-reviews__divider {
    border: none;
    border-top: 1px solid #e0e4e8;
    margin: 20px 0;
}


.el-reviews__carousel {
    position: relative;
    min-height: 140px;
    max-width: 600px;
    margin: 0 auto;
}


.el-reviews__slide {
    display: none;
    animation: reviewFade 0.5s ease;
}


.el-reviews__slide.is-active {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}


.el-reviews__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f5a623;
}


.el-reviews__body {
    text-align: left;
    flex: 1;
}


.el-reviews__stars {
    color: #f5a623;
    font-size: 13px;
    margin-bottom: 6px;
}


.el-reviews__stars .fas {
    margin-right: 1px;
}


.el-reviews__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--tpl-color-sub-b);
    font-style: italic;
    margin: 0 0 8px;
}


.el-reviews__author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tpl-color-main-a);
}


.el-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}


.el-reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}


.el-reviews__dot.is-active {
    background: var(--tpl-color-main-a);
}