@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
.swiper {
    padding: 20px;
}

.yell-review-card {
    background: #F4F4F4;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 30px 10px 20px; /* top padding increased to make room for avatar */
    text-align: center;
    position: relative;
    overflow: visible; /* allow avatar to overflow top */
    min-height: 270px; /* reduced height */
}

.yell-avatar-wrapper {
    position: absolute;
    top: -20px; /* Pull avatar above card */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.yell-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #fff;
    background: #fff;
    object-fit: cover;
}

.yell-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
}

.yell-review-body {
    margin-top: 5px;
}

.yell-author {
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: black;
    font-family: Open Sans;
}

.yell-author a {
    color: black !important;
    text-decoration: none;
    font-family: Open Sans;
}

.yell-date {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.yell-stars {
    font-size: 25px;
    color: #F6BB06;
    margin-bottom: 2px;
    font-weight:bold;
}

.yell-content {
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Open Sans;
}

.yell-content.expanded {
    max-height: none;
}

.yell-read-more {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    margin-top: 1px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight:normal;
    font-family: Arial;
}

.swiper-button-prev,
.swiper-button-next {
    color: #aaa;
    width: -30px;
    height: -30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 23px;
    font-weight:bold;
    padding:15px 5px 10px 30px;
}
