.reviews__area {
  margin-top: 120px;
    &--item {
        padding: 16px;
        border-radius: 16px;
        background-color: $c-white;

        .media {
            img {
                height: 200px;
                width: 100%;
                border-radius: 8px;
            }

            iframe {
                height: 200px;
                width: 100%;
                border-radius: 8px;
            }
        }
        .content {
            padding-top: 16px;
            text-align: center;

            h5 {
                color: $c-main-dark;
                font-size: clamp(14px, 3vw, 16px);
                font-weight: 600;
            }

            .text {
                height: 100px;
                overflow: hidden;
                overflow-y: auto;

                &::-webkit-scrollbar {
                  width: 4px;
                  height: 4px;
                }
                &::-webkit-scrollbar-button {
                  width: 0px;
                  height: 0px;
                }
                &::-webkit-scrollbar-thumb {
                  background: $c-gray-light;
                  border: 0px none #ffffff;
                }

                &::-webkit-scrollbar-thumb:active {
                  background: transparent;
                }
                &::-webkit-scrollbar-track {
                  background: transparent;
                  border: 0px none transparent;
                }

                &::-webkit-scrollbar-track:active {
                  background: $c-gray-light;
                }
                &::-webkit-scrollbar-corner {
                  background: transparent;
                }
            }
        }
    }
}
