/* 
 * Review Section Styles
 * This file controls the look of the "Reviews" carousel and its cards.
 */

/* CAROUSEL WRAPPER */
.viewport {
    width: 100%;
    display: block;
    margin: 0;
    padding: 10px 0;
    overflow-x: hidden;
}

.track {
    display: flex;
    gap: 36px;
    will-change: transform;
}

/* CARD STYLING */


/* HEADER (Avatar + Name) */
.header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.name {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    /* Uses theme text color */
}

.title {
    font-size: 13px;
    color: var(--text-secondary);
    /* Uses secondary theme text color */
    margin-top: 4px;
}

/* DIVIDER LINE */
.divider {
    height: 1px;
    background: var(--glass-border);
    /* Uses localized glass border color */
    margin: 18px 0;
}

/* REVIEW TEXT */
.review {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    /* Uses theme text color */
    margin-bottom: 22px;
}