.reviews {
    position: sticky;
    background: var(--bg-color-60);
    backdrop-filter: blur(4px);
    margin-inline: auto;
    max-width: 800px;
    padding: 4rem 1.5rem;
    
    
}
@media (min-width: 800px) {
    .reviews {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        background: var(--bg-color-60); 
        margin-bottom: 2rem;
        border-radius: .5rem;
        border: 1px solid var(--border-color-10);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 8px;
    }
}
.reviews__header {
    text-align: center;
}
.reviews__body {
}
.reviews__summary {
    display: flex;
    flex-direction: column;
    row-gap: .7rem;
    align-items: start;
    padding: 2rem 0 1.5rem;
}
.reviews__title {
    position: relative;
    
}
.reviews__title-text {
}
.reviews__title-svg {
    position: absolute;    
    width: 1rem;
    right: -10%;
    top: 0%;
    transform: translateY( -50%);
}
.reviews__title-svg path {
    fill: var(--bg-blue-primary);

}
.reviews__rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    row-gap: .5rem;
}
.reviews__rating-text {
    margin-left: .3rem;
    color: var(--border-color-70);
}
.reviews__rating-stars {
    display: flex;
    column-gap: .2rem;
    align-items: center;
}
.reviews__stars-svg {
    width: 7vw;
    max-width: 1.5rem;
    fill: var(--yellow-color);
    padding-bottom: .1rem;
}
.reviews__rating-amount {
    text-align: center;
    color: var(--border-color-50);
}
.reviews__container {
    display: flex;
    column-gap: .5rem;
}
.reviews__link {
    width: 100%;
    max-width: 500px;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .7rem .5rem;
    border-radius: .5rem;
    column-gap: .5rem;
    text-align: center;
    color: white;
}
.reviews__link.secondary {
    background: var(--bg-color-primary);
    border: 1px solid var(--border-color-20);
    color: var(--border-color-80)
}
.reviews__link-svg {
    width: 1.5rem;
    
}
.reviews__link.secondary .reviews__link-svg path {
    stroke: var(--border-color-80);
}
.reviews__link-svg path {
    stroke: white;
}
.reviews__link-text {
}
.reviews__list {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    padding-top: 2rem;
}
.reviews__element {
}
.reviews__element-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.reviews__element-container {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.reviews__element-image {
    display: flex;
    position: relative;
}

.reviews__element-span {
    aspect-ratio: 1/1;
    width: calc(1.5rem + 9vw);
    max-width: 3.5rem;
    border-radius: 50%;

    background: var(--border-color-20);
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews__element-icon {

    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 3.5rem;
    border-radius: 50%;
}
.reviews__element-info {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}
.reviews__element-name {
}
.reviews__element-date {
    color: var(--border-color-50);
}
.reviews__element-stars {
    display: flex;
    column-gap: .2rem;
}
.reviews__element-text {
    padding: 1rem 0 0;
}
.reviews__element-stars-svg {
    fill: var(--yellow-color);
    width: calc(0.8rem + 1.3vw);
    max-width: 1.3rem;
    
}
.reviews__element-stars-svg.empty {
    fill: none;
    stroke: var(--yellow-color)
}