.swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reviewsContainer {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.loadingContainer {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 64px;
    margin-bottom: 32px;
}

.skeleton {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        bottom: -32px;
        left: 0;
        width: 100%;
        height: var(--border-width-sm);
        background-color: var(--border-color-light);
    }
}
